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-2022-07-31")]
pub mod package_2022_07_31;
#[cfg(all(feature = "package-2022-07-31", not(feature = "no-default-tag")))]
pub use package_2022_07_31::*;
#[cfg(feature = "package-2022-05-31")]
pub mod package_2022_05_31;
#[cfg(all(feature = "package-2022-05-31", not(feature = "no-default-tag")))]
pub use package_2022_05_31::*;
#[cfg(feature = "package-2021-04-30-preview")]
pub mod package_2021_04_30_preview;
#[cfg(all(feature = "package-2021-04-30-preview", not(feature = "no-default-tag")))]
pub use package_2021_04_30_preview::*;
#[cfg(feature = "package-1_2-preview")]
pub mod package_1_2_preview;
#[cfg(all(feature = "package-1_2-preview", not(feature = "no-default-tag")))]
pub use package_1_2_preview::*;
#[cfg(feature = "package-1_1-preview")]
pub mod package_1_1_preview;
#[cfg(all(feature = "package-1_1-preview", not(feature = "no-default-tag")))]
pub use package_1_1_preview::*;