import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a HyperparameterTuningJob * Auto-naming is currently not supported for this resource. */ export declare class HyperparameterTuningJob extends pulumi.CustomResource { /** * Get an existing HyperparameterTuningJob 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): HyperparameterTuningJob; /** * Returns true if the given object is an instance of HyperparameterTuningJob. 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 HyperparameterTuningJob; /** * Time when the HyperparameterTuningJob was created. */ readonly createTime: pulumi.Output; /** * The display name of the HyperparameterTuningJob. The name can be up to 128 characters long and can consist of any UTF-8 characters. */ readonly displayName: pulumi.Output; /** * Customer-managed encryption key options for a HyperparameterTuningJob. If this is set, then all resources created by the HyperparameterTuningJob will be encrypted with the provided encryption key. */ readonly encryptionSpec: pulumi.Output; /** * Time when the HyperparameterTuningJob entered any of the following states: `JOB_STATE_SUCCEEDED`, `JOB_STATE_FAILED`, `JOB_STATE_CANCELLED`. */ readonly endTime: pulumi.Output; /** * Only populated when job's state is JOB_STATE_FAILED or JOB_STATE_CANCELLED. */ readonly error: pulumi.Output; /** * The labels with user-defined metadata to organize HyperparameterTuningJobs. 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 labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * The number of failed Trials that need to be seen before failing the HyperparameterTuningJob. If set to 0, Vertex AI decides how many Trials must fail before the whole job fails. */ readonly maxFailedTrialCount: pulumi.Output; /** * The desired total number of Trials. */ readonly maxTrialCount: pulumi.Output; /** * Resource name of the HyperparameterTuningJob. */ readonly name: pulumi.Output; /** * The desired number of Trials to run in parallel. */ readonly parallelTrialCount: pulumi.Output; readonly project: pulumi.Output; /** * Time when the HyperparameterTuningJob for the first time entered the `JOB_STATE_RUNNING` state. */ readonly startTime: pulumi.Output; /** * The detailed state of the job. */ readonly state: pulumi.Output; /** * Study configuration of the HyperparameterTuningJob. */ readonly studySpec: pulumi.Output; /** * The spec of a trial job. The same spec applies to the CustomJobs created in all the trials. */ readonly trialJobSpec: pulumi.Output; /** * Trials of the HyperparameterTuningJob. */ readonly trials: pulumi.Output; /** * Time when the HyperparameterTuningJob was most recently updated. */ readonly updateTime: pulumi.Output; /** * Create a HyperparameterTuningJob 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: HyperparameterTuningJobArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a HyperparameterTuningJob resource. */ export interface HyperparameterTuningJobArgs { /** * The display name of the HyperparameterTuningJob. The name can be up to 128 characters long and can consist of any UTF-8 characters. */ displayName: pulumi.Input; /** * Customer-managed encryption key options for a HyperparameterTuningJob. If this is set, then all resources created by the HyperparameterTuningJob will be encrypted with the provided encryption key. */ encryptionSpec?: pulumi.Input; /** * The labels with user-defined metadata to organize HyperparameterTuningJobs. 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. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * The number of failed Trials that need to be seen before failing the HyperparameterTuningJob. If set to 0, Vertex AI decides how many Trials must fail before the whole job fails. */ maxFailedTrialCount?: pulumi.Input; /** * The desired total number of Trials. */ maxTrialCount: pulumi.Input; /** * The desired number of Trials to run in parallel. */ parallelTrialCount: pulumi.Input; project?: pulumi.Input; /** * Study configuration of the HyperparameterTuningJob. */ studySpec: pulumi.Input; /** * The spec of a trial job. The same spec applies to the CustomJobs created in all the trials. */ trialJobSpec: pulumi.Input; }