1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![allow(clippy::module_inception)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::ptr_arg)]
#![allow(clippy::large_enum_variant)]
#![allow(clippy::derive_partial_eq_without_eq)]
#[cfg(feature = "package-preview-2022-05-01")]
pub mod package_preview_2022_05_01;
#[cfg(all(feature = "package-preview-2022-05-01", not(feature = "no-default-tag")))]
pub use package_preview_2022_05_01::*;
#[cfg(feature = "package-2022-05")]
pub mod package_2022_05;
#[cfg(all(feature = "package-2022-05", not(feature = "no-default-tag")))]
pub use package_2022_05::*;
#[cfg(feature = "package-2020-05-01-preview")]
pub mod package_2020_05_01_preview;
#[cfg(all(feature = "package-2020-05-01-preview", not(feature = "no-default-tag")))]
pub use package_2020_05_01_preview::*;
#[cfg(feature = "package-2020-05-01")]
pub mod package_2020_05_01;
#[cfg(all(feature = "package-2020-05-01", not(feature = "no-default-tag")))]
pub use package_2020_05_01::*;
#[cfg(feature = "package-2018-08-preview")]
pub mod package_2018_08_preview;
#[cfg(all(feature = "package-2018-08-preview", not(feature = "no-default-tag")))]
pub use package_2018_08_preview::*;