Merge "Change external_ids to columns, in dns_add API"

This commit is contained in:
Zuul 2018-04-13 16:36:09 +00:00 committed by Gerrit Code Review
commit 534cb61bc7
1 changed files with 4 additions and 5 deletions

View File

@ -694,12 +694,11 @@ class API(api.API):
"""
@abc.abstractmethod
def dns_add(self, **external_ids):
"""Create a DNS row with external_ids
def dns_add(self, **columns):
"""Create a DNS row with columns
:param external_ids: external_id field key/value mapping
:type external_ids: key: string, value: string
:returns: :class:`Command` with RowView result
:param **columns: Additional columns to directly set on the dns
:returns: :class:`Command` with RowView result
"""
@abc.abstractmethod