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

ProjectsModelsPatchOptions

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

Additional options for ml#projectsModelsPatch.

interface ProjectsModelsPatchOptions {
updateMask?: string;
}

§Properties

§
updateMask?: string
[src]

Required. Specifies the path, relative to Model, of the field to update. For example, to change the description of a model to "foo" and set its default version to "version_1", the update_mask parameter would be specified as description, default_version.name, and the PATCH request body would specify the new value, as follows: { "description": "foo", "defaultVersion": { "name":"version_1" } } Currently the supported update masks are description and default_version.name.