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.
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.
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::*;
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
Warning:
[^2] not officially documented by Hetzner, use at own risk.
[x] Server.
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.
Non-disruptive tests.
These interact with the live Hetzner API using credentials provided via the environment variables
HROBOT_USERNAME
and HROBOT_PASSWORD
.
The tests fail if these credentials are not available. These tests only perform actions that have no side-effects (such as get/list), and are therefore somewhat safe to execute, but can trigger the rate limiting of the Hetzner API.
These tests are only enabled if the feature non-disruptive-tests
is enabled.
Disruptive tests.
These interact with the live Hetzner API using credentials provided via the environment variables
HROBOT_USERNAME
and HROBOT_PASSWORD
.
Unlike non-disruptive tests, these tests will interact with and modify existing resources within the provided account, including but not limited to:
Most of these tests are designed to return the resource to its initial state upon completion, but that assumes the test succeeds!
Suffice to say, these tests are incredibly dangerous and should never be run in a production Hetzner account without explicit supervision.
To make sure these are not run accidentally, you have to enable the disruptive-tests
feature AND and pass the --ignored
flag when
running cargo test
as the tests have been explicitly marked as ignored along with reasoning as to why.