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

TransferJobsListOptions

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

Additional options for StorageTransfer#transferJobsList.

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

§Properties

§
filter: string
[src]

Required. A list of query parameters specified as JSON text in the form of: {"projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "jobStatuses":["status1","status2",...]} Since jobNames and jobStatuses support multiple values, their values must be specified with array notation. projectId is required. jobNames and jobStatuses are optional. The valid values for jobStatuses are case-insensitive: ENABLED, DISABLED, and DELETED.

§
pageSize?: number
[src]

The list page size. The max allowed value is 256.

§
pageToken?: string
[src]

The list page token.