Merge "[OVN] Add ``get_gateway_chassis_az_hints`` method to OVN API" into stable/zed

This commit is contained in:
Zuul 2023-03-09 18:39:17 +00:00 committed by Gerrit Code Review
commit c116029529
1 changed files with 9 additions and 0 deletions

View File

@ -298,6 +298,15 @@ class API(api.API, metaclass=abc.ABCMeta):
:returns: a list of strings with the chassis names
"""
@abc.abstractmethod
def get_gateway_chassis_az_hints(self, gateway_id):
"""Return the list of availability zone hints
:param gateway_id: The gateway id
:type gateway_id: string
:returns: a list of strings with the availability zones
"""
@abc.abstractmethod
def get_unhosted_gateways(self, port_physnet_dict, chassis_physnets,
gw_chassis, chassis_with_azs):