import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates an issue model. */ export declare class IssueModel extends pulumi.CustomResource { /** * Get an existing IssueModel 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): IssueModel; /** * Returns true if the given object is an instance of IssueModel. 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 IssueModel; /** * The time at which this issue model was created. */ readonly createTime: pulumi.Output; /** * The representative name for the issue model. */ readonly displayName: pulumi.Output; /** * Configs for the input data that used to create the issue model. */ readonly inputDataConfig: pulumi.Output; /** * Number of issues in this issue model. */ readonly issueCount: pulumi.Output; /** * Language of the model. */ readonly languageCode: pulumi.Output; readonly location: pulumi.Output; /** * Type of the model. */ readonly modelType: pulumi.Output; /** * Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * State of the model. */ readonly state: pulumi.Output; /** * Immutable. The issue model's label statistics on its training data. */ readonly trainingStats: pulumi.Output; /** * The most recent time at which the issue model was updated. */ readonly updateTime: pulumi.Output; /** * Create a IssueModel 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?: IssueModelArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a IssueModel resource. */ export interface IssueModelArgs { /** * The representative name for the issue model. */ displayName?: pulumi.Input; /** * Configs for the input data that used to create the issue model. */ inputDataConfig?: pulumi.Input; /** * Language of the model. */ languageCode?: pulumi.Input; location?: pulumi.Input; /** * Type of the model. */ modelType?: pulumi.Input; /** * Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model} */ name?: pulumi.Input; project?: pulumi.Input; }