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

YarnApplication

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

A YARN application created by a job. Application information is a subset of org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.Beta Feature: This report is available for testing purposes only. It may be changed before final release.

interface YarnApplication {
name?: string;
progress?: number;
state?:
| "STATE_UNSPECIFIED"
| "NEW"
| "NEW_SAVING"
| "SUBMITTED"
| "ACCEPTED"
| "RUNNING"
| "FINISHED"
| "FAILED"
| "KILLED";
trackingUrl?: string;
}

§Properties

§
name?: string
[src]

Required. The application name.

§
progress?: number
[src]

Required. The numerical progress of the application, from 1 to 100.

§
state?: "STATE_UNSPECIFIED" | "NEW" | "NEW_SAVING" | "SUBMITTED" | "ACCEPTED" | "RUNNING" | "FINISHED" | "FAILED" | "KILLED"
[src]

Required. The application state.

§
trackingUrl?: string
[src]

Optional. The HTTP URL of the ApplicationMaster, HistoryServer, or TimelineServer that provides application-specific information. The URL uses the internal hostname, and requires a proxy server for resolution and, possibly, access.