pub struct AzureClientConfig {
pub credentials: AzureCredentials,
pub region: Option<String>,
pub service_overrides: Option<AzureServiceOverrides>,
pub subscription_id: String,
pub tenant_id: String,
}Expand description
Azure client configuration
JSON schema
{
"description": "Azure client configuration",
"type": "object",
"required": [
"credentials",
"subscriptionId",
"tenantId"
],
"properties": {
"credentials": {
"$ref": "#/components/schemas/AzureCredentials"
},
"region": {
"description": "Azure region for resources.",
"type": [
"string",
"null"
]
},
"serviceOverrides": {
"$ref": "#/components/schemas/AzureServiceOverrides"
},
"subscriptionId": {
"description": "The Azure Subscription ID where resources will be deployed.",
"type": "string"
},
"tenantId": {
"description": "The customer's Azure Tenant ID.",
"type": "string"
}
},
"additionalProperties": false
}Fields§
§credentials: AzureCredentials§region: Option<String>Azure region for resources.
service_overrides: Option<AzureServiceOverrides>§subscription_id: StringThe Azure Subscription ID where resources will be deployed.
tenant_id: StringThe customer’s Azure Tenant ID.
Implementations§
Source§impl AzureClientConfig
impl AzureClientConfig
pub fn builder() -> AzureClientConfig
Trait Implementations§
Source§impl Clone for AzureClientConfig
impl Clone for AzureClientConfig
Source§fn clone(&self) -> AzureClientConfig
fn clone(&self) -> AzureClientConfig
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 AzureClientConfig
impl Debug for AzureClientConfig
Source§impl<'de> Deserialize<'de> for AzureClientConfig
impl<'de> Deserialize<'de> for AzureClientConfig
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<&AzureClientConfig> for AzureClientConfig
impl From<&AzureClientConfig> for AzureClientConfig
Source§fn from(value: &AzureClientConfig) -> Self
fn from(value: &AzureClientConfig) -> Self
Converts to this type from the input type.
Source§impl From<AzureClientConfig> for AzureClientConfig
impl From<AzureClientConfig> for AzureClientConfig
Source§fn from(value: AzureClientConfig) -> Self
fn from(value: AzureClientConfig) -> Self
Converts to this type from the input type.
Source§impl Serialize for AzureClientConfig
impl Serialize for AzureClientConfig
Source§impl TryFrom<AzureClientConfig> for AzureClientConfig
impl TryFrom<AzureClientConfig> for AzureClientConfig
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AzureClientConfig) -> Result<Self, ConversionError>
fn try_from(value: AzureClientConfig) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureClientConfig
impl RefUnwindSafe for AzureClientConfig
impl Send for AzureClientConfig
impl Sync for AzureClientConfig
impl Unpin for AzureClientConfig
impl UnsafeUnpin for AzureClientConfig
impl UnwindSafe for AzureClientConfig
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