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

This method description was missing in [1].

[1]https://review.opendev.org/c/openstack/neutron/+/825073

Related-Bug: #1958225
Change-Id: I7856aa20947e75b394e2cf4c66f48764dbbd425a
This commit is contained in:
Rodolfo Alonso Hernandez 2023-03-01 16:20:27 +01:00
parent fb08c34561
commit ebcde41fc8
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):