import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates a Cloud Dataflow job from a template. */ export declare class Template extends pulumi.CustomResource { /** * Get an existing Template resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Template; /** * Returns true if the given object is an instance of Template. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Template; /** * The template metadata describing the template name, available parameters, etc. */ readonly metadata: pulumi.Output; /** * Describes the runtime metadata with SDKInfo and available parameters. */ readonly runtimeMetadata: pulumi.Output; /** * The status of the get template request. Any problems with the request will be indicated in the error_details. */ readonly status: pulumi.Output; /** * Template Type. */ readonly templateType: pulumi.Output; /** * Create a Template resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Template resource. */ export interface TemplateArgs { /** * The runtime environment for the job. */ readonly environment?: pulumi.Input; /** * Required. A Cloud Storage path to the template from which to create the job. Must be a valid Cloud Storage URL, beginning with `gs://`. */ readonly gcsPath?: pulumi.Input; /** * Required. The job name to use for the created job. */ readonly jobName?: pulumi.Input; /** * The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request. */ readonly location?: pulumi.Input; /** * The runtime parameters to pass to the job. */ readonly parameters?: pulumi.Input<{ [key: string]: pulumi.Input; }>; readonly projectId: pulumi.Input; }