Skip to main content

alien_core/import/data/azure/
mod.rs

1pub mod ai;
2pub mod artifact_registry;
3pub mod build;
4pub mod compute_cluster;
5pub mod container_apps_environment;
6pub mod kv;
7pub mod network;
8pub mod postgres;
9pub mod queue;
10pub mod remote_stack_management;
11pub mod resource_group;
12pub mod service_account;
13pub mod service_activation;
14pub mod service_bus_namespace;
15pub mod storage;
16pub mod storage_account;
17pub mod vault;
18pub mod worker;
19
20pub use ai::*;
21pub use artifact_registry::*;
22pub use build::*;
23pub use compute_cluster::*;
24pub use container_apps_environment::*;
25pub use kv::*;
26pub use network::*;
27pub use postgres::*;
28pub use queue::*;
29pub use remote_stack_management::*;
30pub use resource_group::*;
31pub use service_account::*;
32pub use service_activation::*;
33pub use service_bus_namespace::*;
34pub use storage::*;
35pub use storage_account::*;
36pub use vault::*;
37pub use worker::*;