pub struct ProviderConfigAzure {
pub api_version: Option<String>,
}Expand description
Azure-specific provider options.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§api_version: Option<String>API version. When set, uses the versioned deployment route. When omitted, uses the GA versionless v1 route.
Trait Implementations§
Source§impl Clone for ProviderConfigAzure
impl Clone for ProviderConfigAzure
Source§fn clone(&self) -> ProviderConfigAzure
fn clone(&self) -> ProviderConfigAzure
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 ProviderConfigAzure
impl Debug for ProviderConfigAzure
Source§impl Default for ProviderConfigAzure
impl Default for ProviderConfigAzure
Source§fn default() -> ProviderConfigAzure
fn default() -> ProviderConfigAzure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProviderConfigAzure
impl<'de> Deserialize<'de> for ProviderConfigAzure
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
Auto Trait Implementations§
impl Freeze for ProviderConfigAzure
impl RefUnwindSafe for ProviderConfigAzure
impl Send for ProviderConfigAzure
impl Sync for ProviderConfigAzure
impl Unpin for ProviderConfigAzure
impl UnsafeUnpin for ProviderConfigAzure
impl UnwindSafe for ProviderConfigAzure
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