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

IpMapping

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

Database instance IP mapping

interface IpMapping {
ipAddress?: string;
timeToRetire?: Date;
type?:
| "SQL_IP_ADDRESS_TYPE_UNSPECIFIED"
| "PRIMARY"
| "OUTGOING"
| "PRIVATE"
| "MIGRATED_1ST_GEN";
}

§Properties

§
ipAddress?: string
[src]

The IP address assigned.

§
timeToRetire?: Date
[src]

The due time for this IP to be retired in RFC 3339 format, for example 2012-11-15T16:19:00.094Z. This field is only available when the IP is scheduled to be retired.

§
type?: "SQL_IP_ADDRESS_TYPE_UNSPECIFIED" | "PRIMARY" | "OUTGOING" | "PRIVATE" | "MIGRATED_1ST_GEN"
[src]

The type of this IP address. A PRIMARY address is a public address that can accept incoming connections. A PRIVATE address is a private address that can accept incoming connections. An OUTGOING address is the source address of connections originating from the instance, if supported.