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

ProjectsLocationsConversionWorkspacesDescribeDatabaseEntitiesOptions

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

Additional options for dataMigration#projectsLocationsConversionWorkspacesDescribeDatabaseEntities.

interface ProjectsLocationsConversionWorkspacesDescribeDatabaseEntitiesOptions {
commitId?: string;
filter?: string;
pageSize?: number;
pageToken?: string;
tree?:
| "DB_TREE_TYPE_UNSPECIFIED"
| "SOURCE_TREE"
| "DRAFT_TREE"
| "DESTINATION_TREE";
uncommitted?: boolean;
view?:
| "DATABASE_ENTITY_VIEW_UNSPECIFIED"
| "DATABASE_ENTITY_VIEW_BASIC"
| "DATABASE_ENTITY_VIEW_FULL"
| "DATABASE_ENTITY_VIEW_ROOT_SUMMARY";
}

§Properties

§
commitId?: string
[src]

Optional. Request a specific commit ID. If not specified, the entities from the latest commit are returned.

§
filter?: string
[src]

Optional. Filter the returned entities based on AIP-160 standard.

§
pageSize?: number
[src]

Optional. The maximum number of entities to return. The service may return fewer entities than the value specifies.

§
pageToken?: string
[src]

Optional. The nextPageToken value received in the previous call to conversionWorkspace.describeDatabaseEntities, used in the subsequent request to retrieve the next page of results. On first call this should be left blank. When paginating, all other parameters provided to conversionWorkspace.describeDatabaseEntities must match the call that provided the page token.

§
tree?: "DB_TREE_TYPE_UNSPECIFIED" | "SOURCE_TREE" | "DRAFT_TREE" | "DESTINATION_TREE"
[src]

Required. The tree to fetch.

§
uncommitted?: boolean
[src]

Optional. Whether to retrieve the latest committed version of the entities or the latest version. This field is ignored if a specific commit_id is specified.

§
view?: "DATABASE_ENTITY_VIEW_UNSPECIFIED" | "DATABASE_ENTITY_VIEW_BASIC" | "DATABASE_ENTITY_VIEW_FULL" | "DATABASE_ENTITY_VIEW_ROOT_SUMMARY"
[src]

Optional. Results view based on AIP-157