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

GoogleCloudDatalabelingV1beta1Instruction

import type { GoogleCloudDatalabelingV1beta1Instruction } from "https://googleapis.deno.dev/v1/datalabeling:v1beta1.ts";

Instruction of how to perform the labeling task for human operators. Currently only PDF instruction is supported.

interface GoogleCloudDatalabelingV1beta1Instruction {
blockingResources?: string[];
createTime?: Date;
dataType?:
| "DATA_TYPE_UNSPECIFIED"
| "IMAGE"
| "VIDEO"
| "TEXT"
| "GENERAL_DATA";
description?: string;
displayName?: string;
name?: string;
updateTime?: Date;
}

§Properties

§
blockingResources?: string[]
[src]

Output only. The names of any related resources that are blocking changes to the instruction.

§
createTime?: Date
[src]

Output only. Creation time of instruction.

§

Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.

§
dataType?: "DATA_TYPE_UNSPECIFIED" | "IMAGE" | "VIDEO" | "TEXT" | "GENERAL_DATA"
[src]

Required. The data type of this instruction.

§
description?: string
[src]

Optional. User-provided description of the instruction. The description can be up to 10000 characters long.

§
displayName?: string
[src]

Required. The display name of the instruction. Maximum of 64 characters.

§
name?: string
[src]

Output only. Instruction resource name, format: projects/{project_id}/instructions/{instruction_id}

§

Instruction from a PDF document. The PDF should be in a Cloud Storage bucket.

§
updateTime?: Date
[src]

Output only. Last update time of instruction.