pub struct GoogleCloudOrgpolicyV2PolicySpec {
pub etag: Option<String>,
pub inherit_from_parent: Option<bool>,
pub reset: Option<bool>,
pub rules: Option<Vec<GoogleCloudOrgpolicyV2PolicySpecPolicyRule>>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
Defines a Google Cloud policy specification which is used to specify constraints for configurations of Google Cloud resources.
This type is not used in any activity, and only used as part of another schema.
Fields§
§etag: Option<String>An opaque tag indicating the current version of the policySpec, used for concurrency control. This field is ignored if used in a CreatePolicy request. When the policy is returned from either a GetPolicy or a ListPolicies request, this etag indicates the version of the current policySpec to use when executing a read-modify-write loop. When the policy is returned from a GetEffectivePolicy request, the etag will be unset.
inherit_from_parent: Option<bool>Determines the inheritance behavior for this policy. If inherit_from_parent is true, policy rules set higher up in the hierarchy (up to the closest root) are inherited and present in the effective policy. If it is false, then no rules are inherited, and this policy becomes the new root for evaluation. This field can be set only for policies which configure list constraints.
reset: Option<bool>Ignores policies set above this resource and restores the constraint_default enforcement behavior of the specific constraint at this resource. This field can be set in policies for either list or boolean constraints. If set, rules must be empty and inherit_from_parent must be set to false.
rules: Option<Vec<GoogleCloudOrgpolicyV2PolicySpecPolicyRule>>In policies for boolean constraints, the following requirements apply: - There must be one and only one policy rule where condition is unset. - Boolean policy rules with conditions must set enforced to the opposite of the policy rule without a condition. - During policy evaluation, policy rules with conditions that are true for a target resource take precedence.
update_time: Option<DateTime<Utc>>Output only. The time stamp this was previously updated. This represents the last time a call to CreatePolicy or UpdatePolicy was made for that policy.
Trait Implementations§
Source§impl Clone for GoogleCloudOrgpolicyV2PolicySpec
impl Clone for GoogleCloudOrgpolicyV2PolicySpec
Source§fn clone(&self) -> GoogleCloudOrgpolicyV2PolicySpec
fn clone(&self) -> GoogleCloudOrgpolicyV2PolicySpec
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudOrgpolicyV2PolicySpec
impl Default for GoogleCloudOrgpolicyV2PolicySpec
Source§fn default() -> GoogleCloudOrgpolicyV2PolicySpec
fn default() -> GoogleCloudOrgpolicyV2PolicySpec
Source§impl<'de> Deserialize<'de> for GoogleCloudOrgpolicyV2PolicySpec
impl<'de> Deserialize<'de> for GoogleCloudOrgpolicyV2PolicySpec
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 GoogleCloudOrgpolicyV2PolicySpec
Auto Trait Implementations§
impl Freeze for GoogleCloudOrgpolicyV2PolicySpec
impl RefUnwindSafe for GoogleCloudOrgpolicyV2PolicySpec
impl Send for GoogleCloudOrgpolicyV2PolicySpec
impl Sync for GoogleCloudOrgpolicyV2PolicySpec
impl Unpin for GoogleCloudOrgpolicyV2PolicySpec
impl UnwindSafe for GoogleCloudOrgpolicyV2PolicySpec
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