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

SqlIntegration

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

Represents the SQL instance integrated with Managed AD.

interface SqlIntegration {
readonly createTime?: Date;
name?: string;
sqlInstance?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "DELETING"
| "READY";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The time the SQL integration was created.

§
name?: string
[src]

The unique name of the SQL integration in the form of projects/{project_id}/locations/global/domains/{domain_name}/sqlIntegrations/{sql_integration}

§
sqlInstance?: string
[src]

The full resource name of an integrated SQL instance

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "DELETING" | "READY"
[src]

Output only. The current state of the SQL integration.

§
readonly updateTime?: Date
[src]

Output only. The time the SQL integration was updated.