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

GoogleCloudAiplatformV1NasJob

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

Represents a Neural Architecture Search (NAS) job.

interface GoogleCloudAiplatformV1NasJob {
readonly createTime?: Date;
displayName?: string;
enableRestrictedImageTraining?: boolean;
readonly endTime?: Date;
readonly error?: GoogleRpcStatus;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
readonly nasJobOutput?: GoogleCloudAiplatformV1NasJobOutput;
readonly startTime?: Date;
readonly state?:
| "JOB_STATE_UNSPECIFIED"
| "JOB_STATE_QUEUED"
| "JOB_STATE_PENDING"
| "JOB_STATE_RUNNING"
| "JOB_STATE_SUCCEEDED"
| "JOB_STATE_FAILED"
| "JOB_STATE_CANCELLING"
| "JOB_STATE_CANCELLED"
| "JOB_STATE_PAUSED"
| "JOB_STATE_EXPIRED"
| "JOB_STATE_UPDATING"
| "JOB_STATE_PARTIALLY_SUCCEEDED";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Time when the NasJob was created.

§
displayName?: string
[src]

Required. The display name of the NasJob. The name can be up to 128 characters long and can consist of any UTF-8 characters.

§
enableRestrictedImageTraining?: boolean
[src]

Optional. Enable a separation of Custom model training and restricted image training for tenant project.

§

Customer-managed encryption key options for a NasJob. If this is set, then all resources created by the NasJob will be encrypted with the provided encryption key.

§
readonly endTime?: Date
[src]

Output only. Time when the NasJob entered any of the following states: JOB_STATE_SUCCEEDED, JOB_STATE_FAILED, JOB_STATE_CANCELLED.

§
readonly error?: GoogleRpcStatus
[src]

Output only. Only populated when job's state is JOB_STATE_FAILED or JOB_STATE_CANCELLED.

§
labels?: {
[key: string]: string;
}
[src]

The labels with user-defined metadata to organize NasJobs. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.

§
readonly name?: string
[src]

Output only. Resource name of the NasJob.

§

Output only. Output of the NasJob.

§

Required. The specification of a NasJob.

§
readonly startTime?: Date
[src]

Output only. Time when the NasJob for the first time entered the JOB_STATE_RUNNING state.

§
readonly state?: "JOB_STATE_UNSPECIFIED" | "JOB_STATE_QUEUED" | "JOB_STATE_PENDING" | "JOB_STATE_RUNNING" | "JOB_STATE_SUCCEEDED" | "JOB_STATE_FAILED" | "JOB_STATE_CANCELLING" | "JOB_STATE_CANCELLED" | "JOB_STATE_PAUSED" | "JOB_STATE_EXPIRED" | "JOB_STATE_UPDATING" | "JOB_STATE_PARTIALLY_SUCCEEDED"
[src]

Output only. The detailed state of the job.

§
readonly updateTime?: Date
[src]

Output only. Time when the NasJob was most recently updated.