extrahop

Crates.ioextrahop
lib.rsextrahop
version0.3.0-alpha.1
sourcesrc
created_at2017-04-03 20:08:04.645947
updated_at2020-01-16 22:06:42.104518
descriptionClient library for the ExtraHop platform.
homepage
repositoryhttps://github.com/TedDriggs/extrahop
max_upload_size
id9524
size111,561
Ted Driggs (TedDriggs)

documentation

https://docs.rs/extrahop/0.3.0-alpha.1

README

Extrahop REST API Client

Rust tools for working with the ExtraHop REST API.

Build Status

This library is not an exhaustive strongly-typed client for the API; using that model is not recommended as it may lead to breakages during deserialization that don't impact your code. Instead, the library provides utilities which should be used in concert with structs defined in consuming libraries to make request and response handling easier.

Examples

use extrahop;
let client = Client::new("extrahop", ApiKey::new("YOUR_KEY"));
let rsp = client.get("dashboards").send();
// handle a normal reqwest response.
Commit count: 39

cargo fmt