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

ProjectsLocationsTransferConfigsTransferResourcesListOptions

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

Additional options for BigQueryDataTransfer#projectsLocationsTransferConfigsTransferResourcesList.

interface ProjectsLocationsTransferConfigsTransferResourcesListOptions {
filter?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
filter?: string
[src]

Optional. Filter for the transfer resources. Currently supported filters include: * Resource name: name - Wildcard supported * Resource type: type * Resource destination: destination * Latest resource state: latest_status_detail.state * Last update time: update_time - RFC-3339 format * Parent table name: hierarchy_detail.partition_detail.table Multiple filters can be applied using the AND/OR operator. Examples: * name="*123" AND (type="TABLE" OR latest_status_detail.state="SUCCEEDED")

  • update_time >= "2012-04-21T11:30:00-04:00 * hierarchy_detail.partition_detail.table = "table1"
§
pageSize?: number
[src]

Optional. The maximum number of transfer resources to return. The maximum value is 1000; values above 1000 will be coerced to 1000. The default page size is the maximum value of 1000 results.

§
pageToken?: string
[src]

Optional. A page token, received from a previous ListTransferResources call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListTransferResources must match the call that provided the page token.