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

IngressTo

import type { IngressTo } from "https://googleapis.deno.dev/v1/accesscontextmanager:v1.ts";

Defines the conditions under which an IngressPolicy matches a request. Conditions are based on information about the ApiOperation intended to be performed on the target resource of the request. The request must satisfy what is defined in operations AND resources in order to match.

interface IngressTo {
operations?: ApiOperation[];
resources?: string[];
}

§Properties

§
operations?: ApiOperation[]
[src]

A list of ApiOperations allowed to be performed by the sources specified in corresponding IngressFrom in this ServicePerimeter.

§
resources?: string[]
[src]

A list of resources, currently only projects in the form projects/, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. If a single * is specified, then access to all resources inside the perimeter are allowed.