pub struct GoogleCloudOrgpolicyV2Constraint {
pub boolean_constraint: Option<GoogleCloudOrgpolicyV2ConstraintBooleanConstraint>,
pub constraint_default: Option<String>,
pub description: Option<String>,
pub display_name: Option<String>,
pub list_constraint: Option<GoogleCloudOrgpolicyV2ConstraintListConstraint>,
pub name: Option<String>,
pub supports_dry_run: Option<bool>,
}Expand description
A constraint describes a way to restrict resource’s configuration. For example, you could enforce a constraint that controls which Google Cloud services can be activated across an organization, or whether a Compute Engine instance can have serial port connections established. Constraints can be configured by the organization policy administrator to fit the needs of the organization by setting a policy that includes constraints at different locations in the organization’s resource hierarchy. Policies are inherited down the resource hierarchy from higher levels, but can also be overridden. For details about the inheritance rules please read about policies. Constraints have a default behavior determined by the constraint_default field, which is the enforcement behavior that is used in the absence of a policy being defined or inherited for the resource in question.
This type is not used in any activity, and only used as part of another schema.
Fields§
§boolean_constraint: Option<GoogleCloudOrgpolicyV2ConstraintBooleanConstraint>Defines this constraint as being a BooleanConstraint.
constraint_default: Option<String>The evaluation behavior of this constraint in the absence of a policy.
description: Option<String>Detailed description of what this constraint controls as well as how and where it is enforced. Mutable.
display_name: Option<String>The human readable name. Mutable.
list_constraint: Option<GoogleCloudOrgpolicyV2ConstraintListConstraint>Defines this constraint as being a ListConstraint.
name: Option<String>Immutable. The resource name of the constraint. Must be in one of the following forms: * projects/{project_number}/constraints/{constraint_name} * folders/{folder_id}/constraints/{constraint_name} * organizations/{organization_id}/constraints/{constraint_name} For example, “/projects/123/constraints/compute.disableSerialPortAccess”.
supports_dry_run: Option<bool>Shows if dry run is supported for this constraint or not.
Trait Implementations§
Source§impl Clone for GoogleCloudOrgpolicyV2Constraint
impl Clone for GoogleCloudOrgpolicyV2Constraint
Source§fn clone(&self) -> GoogleCloudOrgpolicyV2Constraint
fn clone(&self) -> GoogleCloudOrgpolicyV2Constraint
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudOrgpolicyV2Constraint
impl Default for GoogleCloudOrgpolicyV2Constraint
Source§fn default() -> GoogleCloudOrgpolicyV2Constraint
fn default() -> GoogleCloudOrgpolicyV2Constraint
Source§impl<'de> Deserialize<'de> for GoogleCloudOrgpolicyV2Constraint
impl<'de> Deserialize<'de> for GoogleCloudOrgpolicyV2Constraint
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>,
impl Part for GoogleCloudOrgpolicyV2Constraint
Auto Trait Implementations§
impl Freeze for GoogleCloudOrgpolicyV2Constraint
impl RefUnwindSafe for GoogleCloudOrgpolicyV2Constraint
impl Send for GoogleCloudOrgpolicyV2Constraint
impl Sync for GoogleCloudOrgpolicyV2Constraint
impl Unpin for GoogleCloudOrgpolicyV2Constraint
impl UnwindSafe for GoogleCloudOrgpolicyV2Constraint
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
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>
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>
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