Struct extrahop::Client [] [src]

pub struct Client { /* fields omitted */ }

A client for making authenticated requests to the ExtraHop REST API.

The client encapsulates the host name and API key needed to make calls to the appliance.

Methods

impl Client
[src]

Creates a new client which connects to the specified host using the provided key.

Gets the appliance's host string.

Creates a GET request builder for the provided relative path with the Authorization header included.

The path should not include the /api/v1 prefix.

let client = Client::new("extrahop.i.northwind.com", ApiKey::new("key".to_string()));
client.get("/whitelist/devices").send().unwrap();

Creates a POST request builder for the provided relative path with the Authorization header included.

The path should not include the /api/v1 prefix.

Creates a PATCH request builder for the provided relative path with the Authorization header included.

The path should not include the /api/v1 prefix.

Creates a PUT request builder for the provided relative path with the Authorization header included.

The path should not include the /api/v1 prefix.

Creates a DELETE request builder for the provided relative path with the Authorization header included.

The path should not include the /api/v1/ prefix.

Creates a request builder for the provided relative path with the Authorization header included.

The path should not include the /api/v1 prefix.

use reqwest::Method;
let client = Client::new("extrahop", ApiKey::new("key".to_string()));
client.request(Method::Get, "/whitelist/devices").send().unwrap();

Trait Implementations

impl Debug for Client
[src]

Formats the value using the given formatter.