solo_lib/sdk/mod.rs
1//! # Solo SDKs
2//! This module contains the SDKs for the various cloud providers.
3//!
4//! ### Notice
5//! In some cases, the firewall rules supports both IPv4 and IPv6 addresses.
6//!
7//! So when you are asked to provide both IPv4 and IPv6 addresses,
8//! like in [`aliyun::ecs::go`] function, checkout the info below:
9//!
10//! If an IP address is left empty, then no replacement is performed for that address.
11//! For example, if you only provide an IPv4 address, it will replace the original IPv4
12//! firewall rule and leave the IPv6 rule as is. Similarly, providing an IPv6 address
13//! replaces only the IPv6 rule.
14//!
15//! Note that you can also provide both IPv4 and IPv6 addresses to replace both rules.
16
17pub mod aliyun;
18pub mod qcloud;
19pub mod rainyun;