[][src]Struct google_networkmanagement1::FirewallInfo

pub struct FirewallInfo {
    pub direction: Option<String>,
    pub display_name: Option<String>,
    pub network_uri: Option<String>,
    pub uri: Option<String>,
    pub priority: Option<i32>,
    pub target_service_accounts: Option<Vec<String>>,
    pub target_tags: Option<Vec<String>>,
    pub action: Option<String>,
}

For display only. Metadata associated with a Compute Engine firewall rule.

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

Fields

direction: Option<String>

Possible values: INGRESS, EGRESS

display_name: Option<String>

Name of a Compute Engine firewall rule.

network_uri: Option<String>

URI of a Compute Engine network.

uri: Option<String>

URI of a Compute Engine firewall rule. Implied default rule does not have URI.

priority: Option<i32>

Priority of the firewall rule.

target_service_accounts: Option<Vec<String>>

Target service accounts of the firewall rule.

target_tags: Option<Vec<String>>

Target tags of the firewall rule.

action: Option<String>

Possible values: ALLOW, DENY

Trait Implementations

impl Clone for FirewallInfo[src]

impl Debug for FirewallInfo[src]

impl Default for FirewallInfo[src]

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

impl Part for FirewallInfo[src]

impl Serialize for FirewallInfo[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any