pub struct Properties {
Show 23 fields pub event_type: Option<EventType>, pub event_source: Option<EventSource>, pub status: Option<Status>, pub title: Option<String>, pub summary: Option<String>, pub header: Option<String>, pub level: Option<Level>, pub event_level: Option<EventLevel>, pub article: Option<Article>, pub links: Vec<Link>, pub impact_start_time: Option<OffsetDateTime>, pub impact_mitigation_time: Option<OffsetDateTime>, pub impact: Vec<Impact>, pub recommended_actions: Option<RecommendedActions>, pub faqs: Vec<Faq>, pub is_hir: Option<bool>, pub enable_microsoft_support: Option<bool>, pub description: Option<String>, pub platform_initiated: Option<bool>, pub enable_chat_with_us: Option<bool>, pub priority: Option<i64>, pub last_update_time: Option<OffsetDateTime>, pub hir_stage: Option<String>,
}
Expand description

Properties of event.

Fields

event_type: Option<EventType>

Type of event.

event_source: Option<EventSource>

Source of event.

status: Option<Status>

Current status of event.

title: Option<String>

Title text of event.

summary: Option<String>

Summary text of event.

header: Option<String>

Header text of event.

level: Option<Level>

Level of insight.

event_level: Option<EventLevel>

Level of event.

article: Option<Article>

Article of event.

links: Vec<Link>

Useful links of event.

impact_start_time: Option<OffsetDateTime>

It provides the Timestamp for when the health impacting event started.

impact_mitigation_time: Option<OffsetDateTime>

It provides the Timestamp for when the health impacting event resolved.

impact: Vec<Impact>

List services impacted by the service health event.

recommended_actions: Option<RecommendedActions>

Recommended actions of event.

faqs: Vec<Faq>

Frequently asked questions for the service health event.

is_hir: Option<bool>

It provides information if the event is High incident rate event or not.

enable_microsoft_support: Option<bool>

Tells if we want to enable or disable Microsoft Support for this event.

description: Option<String>

Contains the communication message for the event, that could include summary, root cause and other details.

platform_initiated: Option<bool>

Is true if the event is platform initiated.

enable_chat_with_us: Option<bool>

Tells if we want to enable or disable Microsoft Support for this event.

priority: Option<i64>

Priority level of the event. Has value from 0 to 23. 0 is the highest priority. Service issue events have higher priority followed by planned maintenance and health advisory. Critical events have higher priority followed by error, warning and informational. Furthermore, active events have higher priority than resolved.

last_update_time: Option<OffsetDateTime>

It provides the Timestamp for when the health impacting event was last updated.

hir_stage: Option<String>

Stage for HIR Document

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more