Orchestration service - reunite class links (:class:) on one line

Change-Id: I29930f630f417bd155bb9235e4d2799bddcacf61
This commit is contained in:
Thomas Bucaioni 2021-12-03 10:34:14 +01:00
parent 112fbf641a
commit 9290eeea2c

View File

@ -220,8 +220,7 @@ class Proxy(proxy.Proxy):
:class:`~openstack.orchestration.v1.stack.Stack` :class:`~openstack.orchestration.v1.stack.Stack`
:returns: One object of :returns: One object of
:class:`~openstack.orchestration.v1.stack_environment.\ :class:`~openstack.orchestration.v1.stack_environment.StackEnvironment`
StackEnvironment`
:raises: :class:`~openstack.exceptions.ResourceNotFound` when no :raises: :class:`~openstack.exceptions.ResourceNotFound` when no
resource can be found. resource can be found.
""" """
@ -297,8 +296,8 @@ class Proxy(proxy.Proxy):
:param dict query: Optional query parameters to be sent to limit the :param dict query: Optional query parameters to be sent to limit the
software configs returned. software configs returned.
:returns: A generator of software config objects. :returns: A generator of software config objects.
:rtype: :class:`~openstack.orchestration.v1.software_config.\ :rtype:
SoftwareConfig` :class:`~openstack.orchestration.v1.software_config.SoftwareConfig`
""" """
return self._list(_sc.SoftwareConfig, **query) return self._list(_sc.SoftwareConfig, **query)
@ -349,8 +348,8 @@ class Proxy(proxy.Proxy):
:param dict query: Optional query parameters to be sent to limit the :param dict query: Optional query parameters to be sent to limit the
software deployments returned. software deployments returned.
:returns: A generator of software deployment objects. :returns: A generator of software deployment objects.
:rtype: :class:`~openstack.orchestration.v1.software_deployment.\ :rtype:
SoftwareDeployment` :class:`~openstack.orchestration.v1.software_deployment.SoftwareDeployment`
""" """
return self._list(_sd.SoftwareDeployment, **query) return self._list(_sd.SoftwareDeployment, **query)
@ -392,8 +391,8 @@ class Proxy(proxy.Proxy):
represented by ``software_deployment``. represented by ``software_deployment``.
:returns: The updated software deployment :returns: The updated software deployment
:rtype: :class:`~openstack.orchestration.v1.software_deployment.\ :rtype:
SoftwareDeployment` :class:`~openstack.orchestration.v1.software_deployment.SoftwareDeployment`
""" """
return self._update(_sd.SoftwareDeployment, software_deployment, return self._update(_sd.SoftwareDeployment, software_deployment,
**attrs) **attrs)