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

SourceObjectIdentifier

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

An identifier for the Migration Job Object.

interface SourceObjectIdentifier {
database?: string;
schema?: string;
table?: string;
type?:
| "MIGRATION_JOB_OBJECT_TYPE_UNSPECIFIED"
| "DATABASE"
| "SCHEMA"
| "TABLE";
}

§Properties

§
database?: string
[src]

Optional. The database name. This will be required only if the object uses a database name as part of its unique identifier.

§
schema?: string
[src]

Optional. The schema name. This will be required only if the object uses a schema name as part of its unique identifier.

§
table?: string
[src]

Optional. The table name. This will be required only if the object is a level below database or schema.

§
type?: "MIGRATION_JOB_OBJECT_TYPE_UNSPECIFIED" | "DATABASE" | "SCHEMA" | "TABLE"
[src]

Required. The type of the migration job object.