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

AccessLevel

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

An AccessLevel is a label that can be applied to requests to Google Cloud services, along with a list of requirements necessary for the label to be applied.

interface AccessLevel {
basic?: BasicLevel;
custom?: CustomLevel;
description?: string;
name?: string;
title?: string;
}

§Properties

§

A BasicLevel composed of Conditions.

§

A CustomLevel written in the Common Expression Language.

§
description?: string
[src]

Description of the AccessLevel and its use. Does not affect behavior.

§
name?: string
[src]

Resource name for the AccessLevel. Format: accessPolicies/{access_policy}/accessLevels/{access_level}. The access_level component must begin with a letter, followed by alphanumeric characters or _. Its maximum length is 50 characters. After you create an AccessLevel, you cannot change its name.

§
title?: string
[src]

Human readable title. Must be unique within the Policy.