pub struct AzureManagementConfig {
pub managing_tenant_id: String,
pub oidc_issuer: String,
pub oidc_subject: String,
}Expand description
Azure management configuration extracted from stack settings
JSON schema
{
"description": "Azure management configuration extracted from stack settings",
"type": "object",
"required": [
"managingTenantId",
"oidcIssuer",
"oidcSubject"
],
"properties": {
"managingTenantId": {
"description": "The managing Azure Tenant ID for cross-tenant access",
"type": "string"
},
"oidcIssuer": {
"description": "OIDC issuer URL trusted by the target-side managed identity.",
"type": "string"
},
"oidcSubject": {
"description": "OIDC subject claim trusted by the target-side managed identity.",
"type": "string"
}
}
}Fields§
§managing_tenant_id: StringThe managing Azure Tenant ID for cross-tenant access
oidc_issuer: StringOIDC issuer URL trusted by the target-side managed identity.
oidc_subject: StringOIDC subject claim trusted by the target-side managed identity.
Implementations§
Source§impl AzureManagementConfig
impl AzureManagementConfig
pub fn builder() -> AzureManagementConfig
Trait Implementations§
Source§impl Clone for AzureManagementConfig
impl Clone for AzureManagementConfig
Source§fn clone(&self) -> AzureManagementConfig
fn clone(&self) -> AzureManagementConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AzureManagementConfig
impl Debug for AzureManagementConfig
Source§impl<'de> Deserialize<'de> for AzureManagementConfig
impl<'de> Deserialize<'de> for AzureManagementConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&AzureManagementConfig> for AzureManagementConfig
impl From<&AzureManagementConfig> for AzureManagementConfig
Source§fn from(value: &AzureManagementConfig) -> Self
fn from(value: &AzureManagementConfig) -> Self
Converts to this type from the input type.
Source§impl From<AzureManagementConfig> for AzureManagementConfig
impl From<AzureManagementConfig> for AzureManagementConfig
Source§fn from(value: AzureManagementConfig) -> Self
fn from(value: AzureManagementConfig) -> Self
Converts to this type from the input type.
Source§impl Serialize for AzureManagementConfig
impl Serialize for AzureManagementConfig
Source§impl TryFrom<AzureManagementConfig> for AzureManagementConfig
impl TryFrom<AzureManagementConfig> for AzureManagementConfig
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AzureManagementConfig) -> Result<Self, ConversionError>
fn try_from(value: AzureManagementConfig) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureManagementConfig
impl RefUnwindSafe for AzureManagementConfig
impl Send for AzureManagementConfig
impl Sync for AzureManagementConfig
impl Unpin for AzureManagementConfig
impl UnsafeUnpin for AzureManagementConfig
impl UnwindSafe for AzureManagementConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more