Struct google_api_proto::google::cloud::orgpolicy::v1::policy::BooleanPolicy
source · pub struct BooleanPolicy {
pub enforced: bool,
}
Expand description
Used in policy_type
to specify how boolean_policy
will behave at this
resource.
Fields§
§enforced: bool
If true
, then the Policy
is enforced. If false
, then any
configuration is acceptable.
Suppose you have a Constraint
constraints/compute.disableSerialPortAccess
with constraint_default
set to ALLOW
. A Policy
for that Constraint
exhibits the following
behavior:
- If the
Policy
at this resource has enforced set tofalse
, serial port connection attempts will be allowed. - If the
Policy
at this resource has enforced set totrue
, serial port connection attempts will be refused. - If the
Policy
at this resource isRestoreDefault
, serial port connection attempts will be allowed. - If no
Policy
is set at this resource or anywhere higher in the resource hierarchy, serial port connection attempts will be allowed. - If no
Policy
is set at this resource, but one exists higher in the resource hierarchy, the behavior is as if thePolicy
were set at this resource.
The following examples demonstrate the different possible layerings:
Example 1 (nearest Constraint
wins):
organizations/foo
has a Policy
with:
{enforced: false}
projects/bar
has no Policy
set.
The constraint at projects/bar
and organizations/foo
will not be
enforced.
Example 2 (enforcement gets replaced):
organizations/foo
has a Policy
with:
{enforced: false}
projects/bar
has a Policy
with:
{enforced: true}
The constraint at organizations/foo
is not enforced.
The constraint at projects/bar
is enforced.
Example 3 (RestoreDefault):
organizations/foo
has a Policy
with:
{enforced: true}
projects/bar
has a Policy
with:
{RestoreDefault: {}}
The constraint at organizations/foo
is enforced.
The constraint at projects/bar
is not enforced, because
constraint_default
for the Constraint
is ALLOW
.
Trait Implementations§
source§impl Clone for BooleanPolicy
impl Clone for BooleanPolicy
source§fn clone(&self) -> BooleanPolicy
fn clone(&self) -> BooleanPolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BooleanPolicy
impl Debug for BooleanPolicy
source§impl Default for BooleanPolicy
impl Default for BooleanPolicy
source§impl Message for BooleanPolicy
impl Message for BooleanPolicy
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for BooleanPolicy
impl PartialEq for BooleanPolicy
source§fn eq(&self, other: &BooleanPolicy) -> bool
fn eq(&self, other: &BooleanPolicy) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for BooleanPolicy
impl StructuralPartialEq for BooleanPolicy
Auto Trait Implementations§
impl Freeze for BooleanPolicy
impl RefUnwindSafe for BooleanPolicy
impl Send for BooleanPolicy
impl Sync for BooleanPolicy
impl Unpin for BooleanPolicy
impl UnwindSafe for BooleanPolicy
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request