def pool_del(pool_name, **kwargs): ''' Delete a pool CLI Example: .. code-block:: bash salt '*' ceph.pool_del pool_name \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' cluster_name The cluster name. Defaults to ``ceph``. cluster_uuid The cluster UUID. Defaults to value found in ceph config file. ''' return ceph_cfg.pool_del(pool_name, **kwargs)
def pool_del(pool_name, **kwargs): """ Delete a pool CLI Example: .. code-block:: bash salt '*' ceph.pool_del pool_name \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: cluster_name Set the cluster name. Defaults to "ceph". cluster_uuid Set the cluster UUID. Defaults to value found in ceph config file. """ return ceph_cfg.pool_del(pool_name, **kwargs)
def pool_del(pool_name, **kwargs): ''' Delete a pool CLI Example: .. code-block:: bash salt '*' ceph_cfg.pool_del pool_name \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: cluster_name Set the cluster name. Defaults to "ceph". cluster_uuid Set the cluster UUID. Defaults to value found in ceph config file. ''' return ceph_cfg.pool_del(pool_name, **kwargs)