hrobot-rs ![Latest Version] ![Docs]

hrobot is an unofficial asynchronous Rust client for interacting with the Hetzner Robot API

See the AsyncRobot struct for a complete list of supported API Endpoints.

Disclaimer: the authors are not associated with Hetzner (except as customers), and the crate is in no way endorsed or supported by Hetzner Online GmbH.

Requirements for usage

A Hetzner WebService/app user is required to make use of this library.

If you already have a Hetzner account, you can create one through the Hetzner Robot web interface under Settings/Preferences.

Example

Here's a quick example showing how to instantiate the AsyncRobot client object and fetching a list of all dedicated servers owned by the account identified by username ```rust use hrobot::*;

[tokio::main]

async fn main() { // Robot is instantiated using the environment // variables HROBOTUSERNAME an HROBOTPASSWORD. let robot = AsyncRobot::default();

for server in robot.list_servers().await.unwrap() {
    println!("{name}: {product} in {location}",
        name = server.name,
        product = server.product,
        location = server.dc
    );
}

} ```

Running the above example should yield something similar to the output below: text foo: AX51-NVMe in FSN1-DC18 bar: Server Auction in FSN1-DC5

API Endpoint Implementation Progress

The entire Hetzner Robot API is covered at this point!

Some endpoints have not been tested due to the cost and disruption to running servers, so please consult the section below for a detailed overview of the endpoints.

Detailed API overview.

Warning!

[^1] not tested, use at your own risk.

[^2] not officially documented by Hetzner, use at own risk.

Testing

Tests are divided into three categories: * Isolated tests.

These do not touch the Hetzner API at all and generally test assumptions made in some of the constructs of the library such as serialization/deserialization from known API output. These are always safe to run and do not require Hetzner credentials.