pub struct AzureAuthRoleRequest {
pub bound_service_principal_ids: Option<Vec<String>>,
pub bound_group_ids: Option<Vec<String>>,
pub bound_locations: Option<Vec<String>>,
pub bound_subscription_ids: Option<Vec<String>>,
pub bound_resource_groups: Option<Vec<String>>,
pub bound_scale_sets: Option<Vec<String>>,
pub token_ttl: Option<String>,
pub token_max_ttl: Option<String>,
pub token_policies: Option<Vec<String>>,
}Fields§
§bound_service_principal_ids: Option<Vec<String>>§bound_group_ids: Option<Vec<String>>§bound_locations: Option<Vec<String>>§bound_subscription_ids: Option<Vec<String>>§bound_resource_groups: Option<Vec<String>>§bound_scale_sets: Option<Vec<String>>§token_ttl: Option<String>§token_max_ttl: Option<String>§token_policies: Option<Vec<String>>Trait Implementations§
Source§impl Clone for AzureAuthRoleRequest
impl Clone for AzureAuthRoleRequest
Source§fn clone(&self) -> AzureAuthRoleRequest
fn clone(&self) -> AzureAuthRoleRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 AzureAuthRoleRequest
impl Debug for AzureAuthRoleRequest
Source§impl Default for AzureAuthRoleRequest
impl Default for AzureAuthRoleRequest
Source§fn default() -> AzureAuthRoleRequest
fn default() -> AzureAuthRoleRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AzureAuthRoleRequest
impl RefUnwindSafe for AzureAuthRoleRequest
impl Send for AzureAuthRoleRequest
impl Sync for AzureAuthRoleRequest
impl Unpin for AzureAuthRoleRequest
impl UnsafeUnpin for AzureAuthRoleRequest
impl UnwindSafe for AzureAuthRoleRequest
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