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

ConfigFile

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

Generic specification of a source configuration file

interface ConfigFile {
fileContents?: Uint8Array;
filePath?: string;
fileType?:
| "FILE_TYPE_UNSPECIFIED"
| "SERVICE_CONFIG_YAML"
| "OPEN_API_JSON"
| "OPEN_API_YAML"
| "FILE_DESCRIPTOR_SET_PROTO"
| "PROTO_FILE";
}

§Properties

§
fileContents?: Uint8Array
[src]

The bytes that constitute the file.

§
filePath?: string
[src]

The file name of the configuration file (full or relative path).

§
fileType?: "FILE_TYPE_UNSPECIFIED" | "SERVICE_CONFIG_YAML" | "OPEN_API_JSON" | "OPEN_API_YAML" | "FILE_DESCRIPTOR_SET_PROTO" | "PROTO_FILE"
[src]

The type of configuration file this represents.