pub struct GoogleCloudOrgpolicyV1Policy {
pub boolean_policy: Option<GoogleCloudOrgpolicyV1BooleanPolicy>,
pub constraint: Option<String>,
pub etag: Option<Vec<u8>>,
pub list_policy: Option<GoogleCloudOrgpolicyV1ListPolicy>,
pub restore_default: Option<GoogleCloudOrgpolicyV1RestoreDefault>,
pub update_time: Option<DateTime<Utc>>,
pub version: Option<i32>,
}Expand description
Defines a Cloud Organization Policy which is used to specify Constraints for configurations of Cloud Platform resources.
This type is not used in any activity, and only used as part of another schema.
Fields§
§boolean_policy: Option<GoogleCloudOrgpolicyV1BooleanPolicy>For boolean Constraints, whether to enforce the Constraint or not.
constraint: Option<String>The name of the Constraint the Policy is configuring, for example, constraints/serviceuser.services. A list of available constraints is available. Immutable after creation.
etag: Option<Vec<u8>>An opaque tag indicating the current version of the Policy, used for concurrency control. When the Policy is returned from either a GetPolicy or a ListOrgPolicy request, this etag indicates the version of the current Policy to use when executing a read-modify-write loop. When the Policy is returned from a GetEffectivePolicy request, the etag will be unset. When the Policy is used in a SetOrgPolicy method, use the etag value that was returned from a GetOrgPolicy request as part of a read-modify-write loop for concurrency control. Not setting the etagin a SetOrgPolicy request will result in an unconditional write of the Policy.
list_policy: Option<GoogleCloudOrgpolicyV1ListPolicy>List of values either allowed or disallowed.
restore_default: Option<GoogleCloudOrgpolicyV1RestoreDefault>Restores the default behavior of the constraint; independent of Constraint type.
update_time: Option<DateTime<Utc>>The time stamp the Policy was previously updated. This is set by the server, not specified by the caller, and represents the last time a call to SetOrgPolicy was made for that Policy. Any value set by the client will be ignored.
version: Option<i32>Version of the Policy. Default version is 0;
Trait Implementations§
Source§impl Clone for GoogleCloudOrgpolicyV1Policy
impl Clone for GoogleCloudOrgpolicyV1Policy
Source§fn clone(&self) -> GoogleCloudOrgpolicyV1Policy
fn clone(&self) -> GoogleCloudOrgpolicyV1Policy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more