Skip to main content

alien_core/import/data/azure/
vault.rs

1use serde::{Deserialize, Serialize};
2
3/// Azure Vault ImportData — a Key Vault namespace.
4#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
5#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
6#[cfg_attr(feature = "jsonschema", derive(schemars::JsonSchema))]
7#[serde(rename_all = "camelCase")]
8pub struct AzureVaultImportData {
9    /// Subscription ID containing the Key Vault.
10    pub subscription_id: String,
11    /// Resource group containing the Key Vault.
12    pub resource_group: String,
13    /// Key Vault name.
14    pub vault_name: String,
15    /// Vault DNS-style URI (`https://<name>.vault.azure.net/`).
16    pub vault_uri: String,
17}