alien-manager-api 1.2.3

Auto-generated Rust SDK for the Alien Manager API
Documentation

Alien Server SDK

Auto-generated from OpenAPI spec using Progenitor. Provides a type-safe Rust client for the alien-server API.

Usage

use alien_server_sdk::Client;

let client = Client::new("http://localhost:8080");

// Create a deployment
let response = client
    .create_deployment()
    .body(&CreateDeploymentRequest {
        name: "my-deployment".into(),
        platform: Platform::Aws,
        ..Default::default()
    })
    .send()
    .await?;