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

AclEntry

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

An entry for an Access Control list.

interface AclEntry {
expirationTime?: Date;
kind?: string;
name?: string;
value?: string;
}

§Properties

§
expirationTime?: Date
[src]

The time when this access control entry expires in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.

§
kind?: string
[src]

This is always sql#aclEntry.

§
name?: string
[src]

Optional. A label to identify this entry.

§
value?: string
[src]

The allowlisted value for the access control list.