import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a job template in the specified region. */ export declare class JobTemplate extends pulumi.CustomResource { /** * Get an existing JobTemplate 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): JobTemplate; /** * Returns true if the given object is an instance of JobTemplate. 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 JobTemplate; /** * The configuration for this template. */ readonly config: pulumi.Output; /** * Required. The ID to use for the job template, which will become the final component of the job template's resource name. This value should be 4-63 characters, and valid characters must match the regular expression `a-zA-Z*`. */ readonly jobTemplateId: pulumi.Output; /** * The labels associated with this job template. You can use these to organize and group your job templates. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * The resource name of the job template. Format: `projects/{project_number}/locations/{location}/jobTemplates/{job_template}` */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Create a JobTemplate 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: JobTemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a JobTemplate resource. */ export interface JobTemplateArgs { /** * The configuration for this template. */ config?: pulumi.Input; /** * Required. The ID to use for the job template, which will become the final component of the job template's resource name. This value should be 4-63 characters, and valid characters must match the regular expression `a-zA-Z*`. */ jobTemplateId: pulumi.Input; /** * The labels associated with this job template. You can use these to organize and group your job templates. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * The resource name of the job template. Format: `projects/{project_number}/locations/{location}/jobTemplates/{job_template}` */ name?: pulumi.Input; project?: pulumi.Input; }