Raft

hvac.api.system_backend.Raft()

Join Raft Cluster

hvac.api.system_backend.Raft.join_raft_cluster()

import hvac
client = hvac.Client()

client.sys.join_raft_cluster(
    leader_api_addr='https://some-vault-node',
)

Read Raft Configuration

hvac.api.system_backend.Raft.read_raft_config()

import hvac
client = hvac.Client()

raft_config = c.sys.read_raft_config()
num_servers_in_cluster = len(raft_config['data']['config']['servers'])

Remove Raft Node

hvac.api.system_backend.Raft.remove_raft_node()

import hvac
client = hvac.Client()

client.sys.remove_raft_node(
    server_id='i-somenodeid',
)

Read Raft Auto-Snapshot Status

hvac.api.system_backend.Raft.read_raft_auto_snapshot_status()

import hvac
client = hvac.Client()

client.sys.read_raft_auto_snapshot_status("my-local-auto-snapshot")

Read Raft Auto-Snapshot Configuration

hvac.api.system_backend.Raft.read_raft_auto_snapshot_config()

import hvac
client = hvac.Client()

client.sys.read_raft_auto_snapshot_config("my-local-auto-snapshot")

List Raft Auto-Snapshot Configurations

hvac.api.system_backend.Raft.list_raft_auto_snapshot_configs()

import hvac
client = hvac.Client()

client.sys.list_raft_auto_snapshot_configs()

Create or Update Raft Auto-Snapshot Configuration

hvac.api.system_backend.Raft.create_or_update_raft_auto_snapshot_config()

import hvac
client = hvac.Client()

client.sys.create_or_update_raft_auto_snapshot_config(
    name="my-local-auto-snapshot",
    interval="1d",
    storage_type="local",
    retain=5,
    local_max_space="100000",
    path_prefix="/opt/vault/backups",
    file_prefix="vault-raft-auto-snapshot"
)

Delete Raft Auto-Snapshot Configuration

hvac.api.system_backend.Raft.delete_raft_auto_snapshot_config()

import hvac
client = hvac.Client()

client.sys.delete_raft_auto_snapshot_config(
    name="my-local-auto-snapshot",
)