pub struct AzureContainerAppsEnvironmentHeartbeatData {Show 15 fields
pub custom_domain_verification_id: Option<String>,
pub default_domain: Option<String>,
pub event_stream_endpoint: Option<String>,
pub infrastructure_resource_group: Option<String>,
pub kind: Option<String>,
pub location: Option<String>,
pub name: String,
pub provisioning_state: Option<String>,
pub resource_group: Option<String>,
pub resource_id: Option<String>,
pub static_ip: Option<String>,
pub status: AzureContainerAppsEnvironmentHeartbeatStatus,
pub workload_profile_count: i32,
pub workload_profiles: Vec<AzureContainerAppsEnvironmentWorkloadProfile>,
pub zone_redundant: Option<bool>,
}Expand description
AzureContainerAppsEnvironmentHeartbeatData
JSON schema
{
"type": "object",
"required": [
"name",
"status",
"workloadProfileCount",
"workloadProfiles"
],
"properties": {
"customDomainVerificationId": {
"type": [
"string",
"null"
]
},
"defaultDomain": {
"type": [
"string",
"null"
]
},
"eventStreamEndpoint": {
"type": [
"string",
"null"
]
},
"infrastructureResourceGroup": {
"type": [
"string",
"null"
]
},
"kind": {
"type": [
"string",
"null"
]
},
"location": {
"type": [
"string",
"null"
]
},
"name": {
"type": "string"
},
"provisioningState": {
"type": [
"string",
"null"
]
},
"resourceGroup": {
"type": [
"string",
"null"
]
},
"resourceId": {
"type": [
"string",
"null"
]
},
"staticIp": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/components/schemas/AzureContainerAppsEnvironmentHeartbeatStatus"
},
"workloadProfileCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"workloadProfiles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AzureContainerAppsEnvironmentWorkloadProfile"
}
},
"zoneRedundant": {
"type": [
"boolean",
"null"
]
}
}
}Fields§
§custom_domain_verification_id: Option<String>§default_domain: Option<String>§event_stream_endpoint: Option<String>§infrastructure_resource_group: Option<String>§kind: Option<String>§location: Option<String>§name: String§provisioning_state: Option<String>§resource_group: Option<String>§resource_id: Option<String>§static_ip: Option<String>§status: AzureContainerAppsEnvironmentHeartbeatStatus§workload_profile_count: i32§workload_profiles: Vec<AzureContainerAppsEnvironmentWorkloadProfile>§zone_redundant: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for AzureContainerAppsEnvironmentHeartbeatData
impl Clone for AzureContainerAppsEnvironmentHeartbeatData
Source§fn clone(&self) -> AzureContainerAppsEnvironmentHeartbeatData
fn clone(&self) -> AzureContainerAppsEnvironmentHeartbeatData
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 AzureContainerAppsEnvironmentHeartbeatData
impl<'de> Deserialize<'de> for AzureContainerAppsEnvironmentHeartbeatData
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<&AzureContainerAppsEnvironmentHeartbeatData> for AzureContainerAppsEnvironmentHeartbeatData
impl From<&AzureContainerAppsEnvironmentHeartbeatData> for AzureContainerAppsEnvironmentHeartbeatData
Source§fn from(value: &AzureContainerAppsEnvironmentHeartbeatData) -> Self
fn from(value: &AzureContainerAppsEnvironmentHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureContainerAppsEnvironmentHeartbeatData> for ResourceHeartbeatData
impl From<AzureContainerAppsEnvironmentHeartbeatData> for ResourceHeartbeatData
Source§fn from(value: AzureContainerAppsEnvironmentHeartbeatData) -> Self
fn from(value: AzureContainerAppsEnvironmentHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureContainerAppsEnvironmentHeartbeatData> for AzureContainerAppsEnvironmentHeartbeatData
impl From<AzureContainerAppsEnvironmentHeartbeatData> for AzureContainerAppsEnvironmentHeartbeatData
Source§fn from(value: AzureContainerAppsEnvironmentHeartbeatData) -> Self
fn from(value: AzureContainerAppsEnvironmentHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AzureContainerAppsEnvironmentHeartbeatData> for AzureContainerAppsEnvironmentHeartbeatData
impl TryFrom<AzureContainerAppsEnvironmentHeartbeatData> for AzureContainerAppsEnvironmentHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AzureContainerAppsEnvironmentHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AzureContainerAppsEnvironmentHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureContainerAppsEnvironmentHeartbeatData
impl RefUnwindSafe for AzureContainerAppsEnvironmentHeartbeatData
impl Send for AzureContainerAppsEnvironmentHeartbeatData
impl Sync for AzureContainerAppsEnvironmentHeartbeatData
impl Unpin for AzureContainerAppsEnvironmentHeartbeatData
impl UnsafeUnpin for AzureContainerAppsEnvironmentHeartbeatData
impl UnwindSafe for AzureContainerAppsEnvironmentHeartbeatData
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