Struct google_cloudresourcemanager1::BooleanPolicy [−][src]
Used in policy_type to specify how boolean_policy will behave at this
resource.
This type is not used in any activity, and only used as part of another schema.
Fields
enforced: Option<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
Policyat this resource has enforced set tofalse, serial port connection attempts will be allowed. - If the
Policyat this resource has enforced set totrue, serial port connection attempts will be refused. - If the
Policyat this resource isRestoreDefault, serial port connection attempts will be allowed. - If no
Policyis set at this resource or anywhere higher in the resource hierarchy, serial port connection attempts will be allowed. - If no
Policyis set at this resource, but one exists higher in the resource hierarchy, the behavior is as if thePolicywere 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
impl Default for BooleanPolicy[src]
impl Default for BooleanPolicyfn default() -> BooleanPolicy[src]
fn default() -> BooleanPolicyReturns the "default value" for a type. Read more
impl Clone for BooleanPolicy[src]
impl Clone for BooleanPolicyfn clone(&self) -> BooleanPolicy[src]
fn clone(&self) -> BooleanPolicyReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for BooleanPolicy[src]
impl Debug for BooleanPolicyfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Part for BooleanPolicy[src]
impl Part for BooleanPolicyAuto Trait Implementations
impl Send for BooleanPolicy
impl Send for BooleanPolicyimpl Sync for BooleanPolicy
impl Sync for BooleanPolicy