Class: Google::Apis::CloudresourcemanagerV1::BooleanPolicy
- Inherits:
-
Object
- Object
- Google::Apis::CloudresourcemanagerV1::BooleanPolicy
- Defined in:
- generated/google/apis/cloudresourcemanager_v1/classes.rb,
generated/google/apis/cloudresourcemanager_v1/representations.rb,
generated/google/apis/cloudresourcemanager_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 thePolicy
is enforced.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BooleanPolicy
constructor
A new instance of BooleanPolicy.
-
#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) ⇒ BooleanPolicy
Returns a new instance of BooleanPolicy
275 276 277 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 275 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
Policy
at this resource has enforced set tofalse
, serial port connection attempts will be allowed. - If the
Policy
at this resource has enforced set totrue
, serial port connection attempts will be refused. - If the
Policy
at this resource isRestoreDefault
, 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
Policy
is set at this resource, but one exists higher in the resource hierarchy, the behavior is as if thePolicy
were set at this resource. The following examples demonstrate the different possible layerings: Example 1 (nearestConstraint
wins):organizations/foo
has aPolicy
with:enforced: false
projects/bar
has noPolicy
set. The constraint atprojects/bar
andorganizations/foo
will not be enforced. Example 2 (enforcement gets replaced):organizations/foo
has aPolicy
with:enforced: false
projects/bar
has aPolicy
with:enforced: true
The constraint atorganizations/foo
is not enforced. The constraint atprojects/bar
is enforced. Example 3 (RestoreDefault):organizations/foo
has aPolicy
with:enforced: true
projects/bar
has aPolicy
with:RestoreDefault:
`The constraint at
organizations/foois enforced. The constraint at
projects/baris not enforced, because
constraint_defaultfor the
Constraintis
ALLOW. Corresponds to the JSON property
enforced`
272 273 274 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 272 def enforced @enforced end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
280 281 282 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 280 def update!(**args) @enforced = args[:enforced] if args.key?(:enforced) end |