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

GoogleCloudAiplatformV1NfsMount

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

Represents a mount configuration for Network File System (NFS) to mount.

interface GoogleCloudAiplatformV1NfsMount {
mountPoint?: string;
path?: string;
server?: string;
}

§Properties

§
mountPoint?: string
[src]

Required. Destination mount path. The NFS will be mounted for the user under /mnt/nfs/

§
path?: string
[src]

Required. Source path exported from NFS server. Has to start with '/', and combined with the ip address, it indicates the source mount path in the form of server:path

§
server?: string
[src]

Required. IP address of the NFS server.