pub struct Properties {
Show 17 fields pub availability_state: Option<AvailabilityState>, pub title: Option<String>, pub summary: Option<String>, pub detailed_status: Option<String>, pub reason_type: Option<String>, pub root_cause_attribution_time: Option<OffsetDateTime>, pub health_event_type: Option<String>, pub health_event_cause: Option<String>, pub health_event_category: Option<String>, pub health_event_id: Option<String>, pub resolution_eta: Option<OffsetDateTime>, pub occured_time: Option<OffsetDateTime>, pub reason_chronicity: Option<ReasonChronicity>, pub reported_time: Option<OffsetDateTime>, pub recently_resolved: Option<RecentlyResolved>, pub recommended_actions: Vec<RecommendedAction>, pub service_impacting_events: Vec<ServiceImpactingEvent>,
}
Expand description

Properties of availability state.

Fields§

§availability_state: Option<AvailabilityState>

Availability status of the resource. When it is null, this availabilityStatus object represents an availability impacting event

§title: Option<String>

Title description of the availability status.

§summary: Option<String>

Summary description of the availability status.

§detailed_status: Option<String>

Details of the availability status.

§reason_type: Option<String>

When the resource’s availabilityState is Unavailable, it describes where the health impacting event was originated. Examples are planned, unplanned, user initiated or an outage etc.

§root_cause_attribution_time: Option<OffsetDateTime>

When the resource’s availabilityState is Unavailable, it provides the Timestamp for when the health impacting event was received.

§health_event_type: Option<String>

In case of an availability impacting event, it describes when the health impacting event was originated. Examples are Lifecycle, Downtime, Fault Analysis etc.

§health_event_cause: Option<String>

In case of an availability impacting event, it describes where the health impacting event was originated. Examples are PlatformInitiated, UserInitiated etc.

§health_event_category: Option<String>

In case of an availability impacting event, it describes the category of a PlatformInitiated health impacting event. Examples are Planned, Unplanned etc.

§health_event_id: Option<String>

It is a unique Id that identifies the event

§resolution_eta: Option<OffsetDateTime>

When the resource’s availabilityState is Unavailable and the reasonType is not User Initiated, it provides the date and time for when the issue is expected to be resolved.

§occured_time: Option<OffsetDateTime>

Timestamp for when last change in health status occurred.

§reason_chronicity: Option<ReasonChronicity>

Chronicity of the availability transition.

§reported_time: Option<OffsetDateTime>

Timestamp for when the health was last checked.

§recently_resolved: Option<RecentlyResolved>

An annotation describing a change in the availabilityState to Available from Unavailable with a reasonType of type Unplanned

§recommended_actions: Vec<RecommendedAction>

Lists actions the user can take based on the current availabilityState of the resource.

§service_impacting_events: Vec<ServiceImpactingEvent>

Lists the service impacting events that may be affecting the health of the resource.

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 ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
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