Merge "[OVN] Add ``get_gateway_chassis_az_hints`` method to OVN API"

This commit is contained in:
Zuul 2023-03-02 20:41:36 +00:00 committed by Gerrit Code Review
commit d523c32ee8
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):