pub struct AzureRemoteStackManagementHeartbeatData {
pub fic_name: Option<String>,
pub role_assignment_ids: Vec<String>,
pub role_definition_id: Option<String>,
pub status: RemoteStackManagementHeartbeatStatus,
pub tenant_id: Option<String>,
pub uami_client_id: Option<String>,
pub uami_principal_id: Option<String>,
pub uami_resource_id: Option<String>,
}Expand description
AzureRemoteStackManagementHeartbeatData
JSON schema
{
"type": "object",
"required": [
"roleAssignmentIds",
"status"
],
"properties": {
"ficName": {
"type": [
"string",
"null"
]
},
"roleAssignmentIds": {
"type": "array",
"items": {
"type": "string"
}
},
"roleDefinitionId": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/components/schemas/RemoteStackManagementHeartbeatStatus"
},
"tenantId": {
"type": [
"string",
"null"
]
},
"uamiClientId": {
"type": [
"string",
"null"
]
},
"uamiPrincipalId": {
"type": [
"string",
"null"
]
},
"uamiResourceId": {
"type": [
"string",
"null"
]
}
}
}Fields§
§fic_name: Option<String>§role_assignment_ids: Vec<String>§role_definition_id: Option<String>§status: RemoteStackManagementHeartbeatStatus§tenant_id: Option<String>§uami_client_id: Option<String>§uami_principal_id: Option<String>§uami_resource_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for AzureRemoteStackManagementHeartbeatData
impl Clone for AzureRemoteStackManagementHeartbeatData
Source§fn clone(&self) -> AzureRemoteStackManagementHeartbeatData
fn clone(&self) -> AzureRemoteStackManagementHeartbeatData
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<'de> Deserialize<'de> for AzureRemoteStackManagementHeartbeatData
impl<'de> Deserialize<'de> for AzureRemoteStackManagementHeartbeatData
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<&AzureRemoteStackManagementHeartbeatData> for AzureRemoteStackManagementHeartbeatData
impl From<&AzureRemoteStackManagementHeartbeatData> for AzureRemoteStackManagementHeartbeatData
Source§fn from(value: &AzureRemoteStackManagementHeartbeatData) -> Self
fn from(value: &AzureRemoteStackManagementHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureRemoteStackManagementHeartbeatData> for AzureRemoteStackManagementHeartbeatData
impl From<AzureRemoteStackManagementHeartbeatData> for AzureRemoteStackManagementHeartbeatData
Source§fn from(value: AzureRemoteStackManagementHeartbeatData) -> Self
fn from(value: AzureRemoteStackManagementHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AzureRemoteStackManagementHeartbeatData> for AzureRemoteStackManagementHeartbeatData
impl TryFrom<AzureRemoteStackManagementHeartbeatData> for AzureRemoteStackManagementHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AzureRemoteStackManagementHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AzureRemoteStackManagementHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureRemoteStackManagementHeartbeatData
impl RefUnwindSafe for AzureRemoteStackManagementHeartbeatData
impl Send for AzureRemoteStackManagementHeartbeatData
impl Sync for AzureRemoteStackManagementHeartbeatData
impl Unpin for AzureRemoteStackManagementHeartbeatData
impl UnsafeUnpin for AzureRemoteStackManagementHeartbeatData
impl UnwindSafe for AzureRemoteStackManagementHeartbeatData
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