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

ConnectionProfile

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

A connection profile definition.

interface ConnectionProfile {
readonly createTime?: Date;
displayName?: string;
readonly error?: Status;
labels?: {
[key: string]: string;
}
;
name?: string;
provider?:
| "DATABASE_PROVIDER_UNSPECIFIED"
| "CLOUDSQL"
| "RDS"
| "AURORA"
| "ALLOYDB";
role?: "ROLE_UNSPECIFIED" | "SOURCE" | "DESTINATION";
state?:
| "STATE_UNSPECIFIED"
| "DRAFT"
| "CREATING"
| "READY"
| "UPDATING"
| "DELETING"
| "DELETED"
| "FAILED";
readonly updateTime?: Date;
}

§Properties

§

An AlloyDB cluster connection profile.

§

A CloudSQL database connection profile.

§
readonly createTime?: Date
[src]

Output only. The timestamp when the resource was created. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z".

§
displayName?: string
[src]

The connection profile display name.

§
readonly error?: Status
[src]

Output only. The error details in case of state FAILED.

§
labels?: {
[key: string]: string;
}
[src]

The resource labels for connection profile to use to annotate any related underlying resources such as Compute Engine VMs. An object containing a list of "key": "value" pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

§

A MySQL database connection profile.

§
name?: string
[src]

The name of this connection profile resource in the form of projects/{project}/locations/{location}/connectionProfiles/{connectionProfile}.

§

An Oracle database connection profile.

§

A PostgreSQL database connection profile.

§
provider?: "DATABASE_PROVIDER_UNSPECIFIED" | "CLOUDSQL" | "RDS" | "AURORA" | "ALLOYDB"
[src]

The database provider.

§
role?: "ROLE_UNSPECIFIED" | "SOURCE" | "DESTINATION"
[src]

Optional. The connection profile role.

§

Connection profile for a SQL Server data source.

§
state?: "STATE_UNSPECIFIED" | "DRAFT" | "CREATING" | "READY" | "UPDATING" | "DELETING" | "DELETED" | "FAILED"
[src]

The current connection profile state (e.g. DRAFT, READY, or FAILED).

§
readonly updateTime?: Date
[src]

Output only. The timestamp when the resource was last updated. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z".