Class GoogleCloudOrgpolicyV1BooleanPolicy
Used in policy_type to specify how boolean_policy will behave at this resource.
Implements
Inherited Members
Namespace: Google.Apis.CloudAsset.v1beta1.Data
Assembly: Google.Apis.CloudAsset.v1beta1.dll
Syntax
public class GoogleCloudOrgpolicyV1BooleanPolicy : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Enforced
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 to false, serial port connection attempts will be allowed. - If the Policy at this resource
has enforced set to true, serial port connection attempts will be refused. - If the Policy at this
resource is RestoreDefault, 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
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 (nearestConstraintwins):organizations/foohas aPolicywith: {enforced: false}projects/barhas noPolicyset. The constraint atprojects/barandorganizations/foowill not be enforced. Example 2 (enforcement gets replaced):organizations/foohas aPolicywith: {enforced: false}projects/barhas aPolicywith: {enforced: true} The constraint atorganizations/foois not enforced. The constraint atprojects/baris enforced. Example 3 (RestoreDefault):organizations/foohas aPolicywith: {enforced: true}projects/barhas aPolicywith: {RestoreDefault: {}} The constraint atorganizations/foois enforced. The constraint atprojects/baris not enforced, becauseconstraint_defaultfor theConstraintisALLOW.
Declaration
[JsonProperty("enforced")]
public virtual bool? Enforced { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |