Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudOrgpolicyV2Constraint

import type { GoogleCloudOrgpolicyV2Constraint } from "https://googleapis.deno.dev/v1/orgpolicy:v2.ts";

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. Constraints have a default behavior determined by the constraint_default field, which is the enforcement behavior that is used in the absence of a policy being defined or inherited for the resource in question.

interface GoogleCloudOrgpolicyV2Constraint {
constraintDefault?: "CONSTRAINT_DEFAULT_UNSPECIFIED" | "ALLOW" | "DENY";
description?: string;
displayName?: string;
name?: string;
supportsDryRun?: boolean;
}

§Properties

§

Defines this constraint as being a BooleanConstraint.

§
constraintDefault?: "CONSTRAINT_DEFAULT_UNSPECIFIED" | "ALLOW" | "DENY"
[src]

The evaluation behavior of this constraint in the absence of a policy.

§
description?: string
[src]

Detailed description of what this constraint controls as well as how and where it is enforced. Mutable.

§
displayName?: string
[src]

The human readable name. Mutable.

§

Defines this constraint as being a GoogleManagedConstraint.

§

Defines this constraint as being a ListConstraint.

§
name?: string
[src]

Immutable. The resource name of the constraint. Must be in one of the following forms: * projects/{project_number}/constraints/{constraint_name} * folders/{folder_id}/constraints/{constraint_name} * organizations/{organization_id}/constraints/{constraint_name} For example, "/projects/123/constraints/compute.disableSerialPortAccess".

§
supportsDryRun?: boolean
[src]

Shows if dry run is supported for this constraint or not.