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

WorkflowMetadata

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

A Dataproc workflow template resource.

interface WorkflowMetadata {
readonly clusterName?: string;
readonly clusterUuid?: string;
readonly createCluster?: ClusterOperation;
readonly dagEndTime?: Date;
readonly dagStartTime?: Date;
readonly dagTimeout?: number;
readonly deleteCluster?: ClusterOperation;
readonly endTime?: Date;
readonly graph?: WorkflowGraph;
parameters?: {
[key: string]: string;
}
;
readonly startTime?: Date;
readonly state?:
| "UNKNOWN"
| "PENDING"
| "RUNNING"
| "DONE";
readonly template?: string;
readonly version?: number;
}

§Properties

§
readonly clusterName?: string
[src]

Output only. The name of the target cluster.

§
readonly clusterUuid?: string
[src]

Output only. The UUID of target cluster.

§
readonly createCluster?: ClusterOperation
[src]

Output only. The create cluster operation metadata.

§
readonly dagEndTime?: Date
[src]

Output only. DAG end time, only set for workflows with dag_timeout when DAG ends.

§
readonly dagStartTime?: Date
[src]

Output only. DAG start time, only set for workflows with dag_timeout when DAG begins.

§
readonly dagTimeout?: number
[src]

Output only. The timeout duration for the DAG of jobs, expressed in seconds (see JSON representation of duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).

§
readonly deleteCluster?: ClusterOperation
[src]

Output only. The delete cluster operation metadata.

§
readonly endTime?: Date
[src]

Output only. Workflow end time.

§
readonly graph?: WorkflowGraph
[src]

Output only. The workflow graph.

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

Map from parameter names to values that were used for those parameters.

§
readonly startTime?: Date
[src]

Output only. Workflow start time.

§
readonly state?: "UNKNOWN" | "PENDING" | "RUNNING" | "DONE"
[src]

Output only. The workflow state.

§
readonly template?: string
[src]

Output only. The resource name of the workflow template as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.workflowTemplates, the resource name of the template has the following format: projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For projects.locations.workflowTemplates, the resource name of the template has the following format: projects/{project_id}/locations/{location}/workflowTemplates/{template_id}

§
readonly version?: number
[src]

Output only. The version of template at the time of workflow instantiation.