sail-rs 0.5.0

Official Rust SDK for Sail: create and drive sailboxes (sandboxed cloud VMs) with lifecycle, streaming exec, file transfer, and ingress.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Secrets and credential injection policies for your organization.
//!
//! A secret is a write-only named value scoped to your organization: once
//! set, its value can never be read back. A credential injection policy is a
//! set of immutable rules that inject secret values into HTTPS requests a
//! Sailbox sends to matching hosts, so workloads can call authenticated APIs
//! without ever holding the credential. A Sailbox has at most one attached
//! policy, managed through
//! [`Sailbox::set_credential_policy`](crate::Sailbox::set_credential_policy).
//!
//! Entry point: [`Client::credentials`](crate::Client::credentials).

pub mod types;

pub(crate) mod api;
pub(crate) mod object;