pub struct InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy {
pub display_name: Option<String>,
pub name: Option<String>,
pub rules: Option<Vec<FirewallPolicyRule>>,
pub short_name: Option<String>,
pub type_: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§display_name: Option<String>[Output Only] Deprecated, please use short name instead. The display name of the firewall policy.
name: Option<String>[Output Only] The name of the firewall policy.
rules: Option<Vec<FirewallPolicyRule>>The rules that apply to the network.
short_name: Option<String>[Output Only] The short name of the firewall policy.
type_: Option<String>[Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
Trait Implementations§
Source§impl Clone for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
impl Clone for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
Source§fn clone(&self) -> InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
fn clone(&self) -> InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
impl Default for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
Source§fn default() -> InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
fn default() -> InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
impl<'de> Deserialize<'de> for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
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
impl Part for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
Auto Trait Implementations§
impl Freeze for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
impl RefUnwindSafe for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
impl Send for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
impl Sync for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
impl Unpin for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
impl UnwindSafe for InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more