#cloud #api-bindings #compute #lrz #client #cc #budgeting

lrzcc

Rust client library for the LRZ-specific features of the Openstack-based LRZ Compute Cloud

9 stable releases

new 1.7.0 Feb 5, 2025
1.6.0 Dec 29, 2024
1.4.0 Nov 22, 2024
1.3.0 Oct 9, 2024
1.0.0 Aug 16, 2024

#1787 in Web programming

Download history 6/week @ 2024-10-18 2/week @ 2024-11-01 1/week @ 2024-11-08 1/week @ 2024-11-15 145/week @ 2024-11-22 6/week @ 2024-11-29 124/week @ 2024-12-06 26/week @ 2024-12-13 118/week @ 2024-12-27 10/week @ 2025-01-03 2/week @ 2025-01-10 114/week @ 2025-01-31

116 downloads per month
Used in lrzcc-cli

MIT license

145KB
4.5K SLoC

lrzcc-lib

API bindings written in Rust for LRZ-specific features of the Openstack-based LRZ Compute Cloud, https://cc.lrz.de, first and foremost the budgeting system.

Usage

To use the library add the following to your Cargo.toml under [dependencies]:

lrzcc = 1

After that you create a Token and Api object to interact with the API:

use lrzcc::{Token, Api};

// let token = Token::from_str("abcdefg...").unwrap();
let token = Token::new(
                auth_url.as_str(),
                username.as_str(),
                password.as_str(),
                project_name.as_str(),
                user_domain_name.as_str(),
                project_domain_id.as_str(),
            ).unwrap();
let api = Api::new("https://cc.lrz.de:1337/api", token, None, None).unwrap();
println!("{:?}", api.user.me());

Dependencies

~19–32MB
~533K SLoC