pub struct AzureTargetDetails {
pub azure_client_id: Option<String>,
pub azure_client_secret: Option<String>,
pub azure_cloud: Option<String>,
pub azure_resource_group_name: Option<String>,
pub azure_resource_name: Option<String>,
pub azure_subscription_id: Option<String>,
pub azure_tenant_id: Option<String>,
pub azure_username: Option<String>,
pub connection_type: Option<String>,
pub expiration_date: Option<String>,
pub grace_rotated_secret_key: Option<String>,
pub use_gw_cloud_identity: Option<bool>,
}Fields§
§azure_client_id: Option<String>§azure_client_secret: Option<String>§azure_cloud: Option<String>§azure_resource_group_name: Option<String>§azure_resource_name: Option<String>§azure_subscription_id: Option<String>§azure_tenant_id: Option<String>§azure_username: Option<String>§connection_type: Option<String>§expiration_date: Option<String>§grace_rotated_secret_key: Option<String>§use_gw_cloud_identity: Option<bool>Implementations§
Source§impl AzureTargetDetails
impl AzureTargetDetails
pub fn new() -> AzureTargetDetails
Trait Implementations§
Source§impl Clone for AzureTargetDetails
impl Clone for AzureTargetDetails
Source§fn clone(&self) -> AzureTargetDetails
fn clone(&self) -> AzureTargetDetails
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 AzureTargetDetails
impl Debug for AzureTargetDetails
Source§impl Default for AzureTargetDetails
impl Default for AzureTargetDetails
Source§fn default() -> AzureTargetDetails
fn default() -> AzureTargetDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureTargetDetails
impl<'de> Deserialize<'de> for AzureTargetDetails
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 PartialEq for AzureTargetDetails
impl PartialEq for AzureTargetDetails
Source§fn eq(&self, other: &AzureTargetDetails) -> bool
fn eq(&self, other: &AzureTargetDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AzureTargetDetails
impl Serialize for AzureTargetDetails
impl StructuralPartialEq for AzureTargetDetails
Auto Trait Implementations§
impl Freeze for AzureTargetDetails
impl RefUnwindSafe for AzureTargetDetails
impl Send for AzureTargetDetails
impl Sync for AzureTargetDetails
impl Unpin for AzureTargetDetails
impl UnsafeUnpin for AzureTargetDetails
impl UnwindSafe for AzureTargetDetails
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