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

XPSFileSpec

import type { XPSFileSpec } from "https://googleapis.deno.dev/v1/language:v2.ts";

Spec of input and output files, on external file systems (CNS, GCS, etc).

interface XPSFileSpec {
directoryPath?: string;
fileFormat?:
| "FILE_FORMAT_UNKNOWN"
| "FILE_FORMAT_SSTABLE"
| "FILE_FORMAT_TRANSLATION_RKV"
| "FILE_FORMAT_RECORDIO"
| "FILE_FORMAT_RAW_CSV"
| "FILE_FORMAT_RAW_CAPACITOR";
fileSpec?: string;
singleFilePath?: string;
}

§Properties

§
directoryPath?: string
[src]

Deprecated. Use file_spec.

§
fileFormat?: "FILE_FORMAT_UNKNOWN" | "FILE_FORMAT_SSTABLE" | "FILE_FORMAT_TRANSLATION_RKV" | "FILE_FORMAT_RECORDIO" | "FILE_FORMAT_RAW_CSV" | "FILE_FORMAT_RAW_CAPACITOR"
[src]
§
fileSpec?: string
[src]

Single file path, or file pattern of format "/path/to/file@shard_count". E.g. /cns/cell-d/somewhere/file@2 is expanded to two files: /cns/cell-d/somewhere/file-00000-of-00002 and /cns/cell-d/somewhere/file-00001-of-00002.

§
singleFilePath?: string
[src]

Deprecated. Use file_spec.