kibana-sync 0.2.2

Reusable Kibana sync library for saved objects, spaces, agents, tools, skills, and workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Kibana API client and authentication.
//!
//! This module provides the [`KibanaClient`] for interacting with the Kibana API,
//! along with authentication type [`Auth`].

mod auth;
mod kibana;

pub use auth::Auth;
pub use kibana::{
    ApiCapability, KibanaClient, KibanaClientBuilder, KibanaVersion, KibanaVersionInfo,
    SpaceRegistry, parse_kibana_version,
};