[][src]Struct google_compute1::InterconnectOutageNotification

pub struct InterconnectOutageNotification {
    pub description: Option<String>,
    pub affected_circuits: Option<Vec<String>>,
    pub source: Option<String>,
    pub state: Option<String>,
    pub start_time: Option<String>,
    pub issue_type: Option<String>,
    pub end_time: Option<String>,
    pub name: Option<String>,
}

Description of a planned outage on this Interconnect. Next id: 9

This type is not used in any activity, and only used as part of another schema.

Fields

description: Option<String>

A description about the purpose of the outage.

affected_circuits: Option<Vec<String>>

If issue_type is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.

source: Option<String>

The party that generated this notification, which can take the following value:

  • GOOGLE: this notification as generated by Google. Note that the value of NSRC_GOOGLE has been deprecated in favor of GOOGLE.
state: Option<String>

State of this notification, which can take one of the following values:

  • ACTIVE: This outage notification is active. The event could be in the past, present, or future. See start_time and end_time for scheduling.
  • CANCELLED: The outage associated with this notification was cancelled before the outage was due to start. Note that the versions of this enum prefixed with "NS_" have been deprecated in favor of the unprefixed values.
start_time: Option<String>

Scheduled start time for the outage (milliseconds since Unix epoch).

issue_type: Option<String>

Form this outage is expected to take, which can take one of the following values:

  • OUTAGE: The Interconnect may be completely out of service for some or all of the specified window.
  • PARTIAL_OUTAGE: Some circuits comprising the Interconnect as a whole should remain up, but with reduced bandwidth. Note that the versions of this enum prefixed with "IT_" have been deprecated in favor of the unprefixed values.
end_time: Option<String>

Scheduled end time for the outage (milliseconds since Unix epoch).

name: Option<String>

Unique identifier for this outage notification.

Trait Implementations

impl Part for InterconnectOutageNotification[src]

impl Default for InterconnectOutageNotification[src]

impl Clone for InterconnectOutageNotification[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for InterconnectOutageNotification[src]

impl Serialize for InterconnectOutageNotification[src]

impl<'de> Deserialize<'de> for InterconnectOutageNotification[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]