1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
from hvac import utils
from hvac.api.system_backend.system_backend_mixin import SystemBackendMixin
class Namespace(SystemBackendMixin):
def create_namespace(self, path):
"""Create a namespace at the given path.
Supported methods:
POST: /sys/namespaces/{path}. Produces: 200 application/json
:return: The response of the request.
:rtype: requests.Response
"""
api_path = utils.format_url("/v1/sys/namespaces/{path}", path=path)
return self._adapter.post(
url=api_path,
)
def list_namespaces(self):
"""Lists all the namespaces.
Supported methods:
LIST: /sys/namespaces. Produces: 200 application/json
:return: The JSON response of the request.
:rtype: dict
"""
api_path = "/v1/sys/namespaces/"
return self._adapter.list(
url=api_path,
)
def delete_namespace(self, path):
"""Delete a namespaces. You cannot delete a namespace with existing child namespaces.
Supported methods:
DELETE: /sys/namespaces. Produces: 204 (empty body)
:return: The response of the request.
:rtype: requests.Response
"""
api_path = utils.format_url("/v1/sys/namespaces/{path}", path=path)
return self._adapter.delete(
url=api_path,
)
|