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

DatastoreMountConfig

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

The Datastore Mount configuration

interface DatastoreMountConfig {
accessMode?: "ACCESS_MODE_UNSPECIFIED" | "READ_ONLY" | "READ_WRITE";
datastore?: string;
datastoreNetwork?: DatastoreNetwork;
readonly fileShare?: string;
nfsVersion?: "NFS_VERSION_UNSPECIFIED" | "NFS_V3";
securityType?: "SECURITY_TYPE_UNSPECIFIED";
readonly servers?: string[];
}

§Properties

§
accessMode?: "ACCESS_MODE_UNSPECIFIED" | "READ_ONLY" | "READ_WRITE"
[src]

Optional. NFS is accessed by hosts in read mode Optional. Default value used will be READ_WRITE

§
datastore?: string
[src]

Required. The resource name of the datastore to unmount. The datastore requested to be mounted should be in same region/zone as the cluster. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1/datastores/my-datastore

§
datastoreNetwork?: DatastoreNetwork
[src]

Required. The network configuration for the datastore.

§
readonly fileShare?: string
[src]

Output only. File share name.

§
nfsVersion?: "NFS_VERSION_UNSPECIFIED" | "NFS_V3"
[src]

Optional. The NFS protocol supported by the NFS volume. Default value used will be NFS_V3

§
securityType?: "SECURITY_TYPE_UNSPECIFIED"
[src]

Optional. ONLY required when NFS 4.1 version is used

§
readonly servers?: string[]
[src]

Output only. Server IP addresses of the NFS volume. For NFS 3, you can only provide a single server IP address or DNS names.