[][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]

pub fn new<IS: Into<String>>(host: IS, api_key: ApiKey) -> Self[src]

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

pub fn danger_new_unverified<IS: Into<String>>(
    host: IS,
    api_key: ApiKey
) -> Result<Self>
[src]

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

pub fn host(&self) -> &str[src]

Gets the appliance's host string.

pub fn get(&self, path: &str) -> RequestBuilder[src]

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();

pub fn post(&self, path: &str) -> RequestBuilder[src]

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

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

pub fn patch(&self, path: &str) -> RequestBuilder[src]

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

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

pub fn put(&self, path: &str) -> RequestBuilder[src]

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

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

pub fn delete(&self, path: &str) -> RequestBuilder[src]

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

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

pub fn request(&self, method: Method, path: &str) -> RequestBuilder[src]

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, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

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

type Error = !

🔬 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]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T