[][src]Struct extrahop::Client

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.

Creates a new client with certificate verification disabled. This should only be used when a human has passed an --insecure flag or the like.

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"));
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]

Auto Trait Implementations

impl Send for Client

impl Sync for Client

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T