The response returned from the constraints.list
method.
JSON representation |
---|
{
"constraints": [
{
object ( |
Fields | |
---|---|
constraints[] |
The collection of constraints that are available on the targeted resource. |
next |
Page token used to retrieve the next page. This is currently not used. |
Constraint
A constraint describes a way to restrict resource's configuration. For example, you could enforce a constraint that controls which Google Cloud services can be activated across an organization, or whether a Compute Engine instance can have serial port connections established. Constraints can be configured by the organization policy administrator to fit the needs of the organization by setting a policy that includes constraints at different locations in the organization's resource hierarchy. Policies are inherited down the resource hierarchy from higher levels, but can also be overridden. For details about the inheritance rules please read about [policies
][google.cloud.OrgPolicy.v2.Policy].
Constraints have a default behavior determined by the constraintDefault
field, which is the enforcement behavior that is used in the absence of a policy being defined or inherited for the resource in question.
JSON representation |
---|
{ "name": string, "displayName": string, "description": string, "constraintDefault": enum ( |
Fields | |
---|---|
name |
Immutable. The resource name of the constraint. Must be in one of the following forms:
For example, "/projects/123/constraints/compute.disableSerialPortAccess". |
display |
The human readable name. Mutable. |
description |
Detailed description of what this constraint controls as well as how and where it is enforced. Mutable. |
constraint |
The evaluation behavior of this constraint in the absence of a policy. |
supports |
Shows if dry run is supported for this constraint or not. |
Union field Immutable after creation. |
|
list |
Defines this constraint as being a ListConstraint. |
boolean |
Defines this constraint as being a BooleanConstraint. |
ConstraintDefault
Specifies the default behavior in the absence of any policy for the constraint. This must not be CONSTRAINT_DEFAULT_UNSPECIFIED
.
Immutable after creation.
Enums | |
---|---|
CONSTRAINT_DEFAULT_UNSPECIFIED |
This is only used for distinguishing unset values and should never be used. |
ALLOW |
Indicate that all values are allowed for list constraints. Indicate that enforcement is off for boolean constraints. |
DENY |
Indicate that all values are denied for list constraints. Indicate that enforcement is on for boolean constraints. |
ListConstraint
A constraint that allows or disallows a list of string values, which are configured by an Organization Policy administrator with a policy.
JSON representation |
---|
{ "supportsIn": boolean, "supportsUnder": boolean } |
Fields | |
---|---|
supports |
Indicates whether values grouped into categories can be used in |
supports |
Indicates whether subtrees of the Resource Manager resource hierarchy can be used in |
BooleanConstraint
This type has no fields.
A constraint that is either enforced or not.
For example, a constraint constraints/compute.disableSerialPortAccess
. If it is enforced on a VM instance, serial port connections will not be opened to that instance.