Class: Google::Apis::CloudassetV1::GoogleCloudOrgpolicyV1BooleanPolicy
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::GoogleCloudOrgpolicyV1BooleanPolicy
- Defined in:
- generated/google/apis/cloudasset_v1/classes.rb,
generated/google/apis/cloudasset_v1/representations.rb,
generated/google/apis/cloudasset_v1/representations.rb
Overview
Used in policy_type to specify how boolean_policy will behave at this
resource.
Instance Attribute Summary collapse
-
#enforced ⇒ Boolean
(also: #enforced?)
If
true, then thePolicyis enforced.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudOrgpolicyV1BooleanPolicy
constructor
A new instance of GoogleCloudOrgpolicyV1BooleanPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudOrgpolicyV1BooleanPolicy
Returns a new instance of GoogleCloudOrgpolicyV1BooleanPolicy
568 569 570 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 568 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enforced ⇒ Boolean Also known as: 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
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 (nearestConstraintwins):organizations/foohas aPolicywith:enforced: falseprojects/barhas noPolicyset. The constraint atprojects/barandorganizations/foowill not be enforced. Example 2 (enforcement gets replaced):organizations/foohas aPolicywith:enforced: falseprojects/barhas aPolicywith:enforced: trueThe constraint atorganizations/foois not enforced. The constraint atprojects/baris enforced. Example 3 (RestoreDefault):organizations/foohas aPolicywith:enforced: trueprojects/barhas aPolicywith:RestoreDefault:`The constraint atorganizations/foois enforced. The constraint atprojects/baris not enforced, becauseconstraint_defaultfor theConstraintisALLOW. Corresponds to the JSON propertyenforced`
565 566 567 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 565 def enforced @enforced end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
573 574 575 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 573 def update!(**args) @enforced = args[:enforced] if args.key?(:enforced) end |