import * as pulumi from "@pulumi/pulumi"; export declare class Chat extends pulumi.CustomResource { /** * Get an existing Chat 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ChatState, opts?: pulumi.CustomResourceOptions): Chat; /** * Returns true if the given object is an instance of Chat. 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 Chat; readonly chatId: pulumi.Output; /** * Conversation context identifier passed to the Portainer chat assistant. */ readonly context: pulumi.Output; /** * Identifier of the Portainer environment the chat request is scoped to. */ readonly environmentId: pulumi.Output; /** * User prompt sent to the Portainer chat assistant. */ readonly message: pulumi.Output; /** * AI model name used to generate the chat response (defaults to `gpt-3.5-turbo`). */ readonly model: pulumi.Output; /** * Textual response returned by the Portainer chat assistant. */ readonly responseMessage: pulumi.Output; /** * YAML manifest extracted from the chat response, when applicable. */ readonly responseYaml: pulumi.Output; /** * Create a Chat 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: ChatArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Chat resources. */ export interface ChatState { chatId?: pulumi.Input; /** * Conversation context identifier passed to the Portainer chat assistant. */ context?: pulumi.Input; /** * Identifier of the Portainer environment the chat request is scoped to. */ environmentId?: pulumi.Input; /** * User prompt sent to the Portainer chat assistant. */ message?: pulumi.Input; /** * AI model name used to generate the chat response (defaults to `gpt-3.5-turbo`). */ model?: pulumi.Input; /** * Textual response returned by the Portainer chat assistant. */ responseMessage?: pulumi.Input; /** * YAML manifest extracted from the chat response, when applicable. */ responseYaml?: pulumi.Input; } /** * The set of arguments for constructing a Chat resource. */ export interface ChatArgs { chatId?: pulumi.Input; /** * Conversation context identifier passed to the Portainer chat assistant. */ context: pulumi.Input; /** * Identifier of the Portainer environment the chat request is scoped to. */ environmentId: pulumi.Input; /** * User prompt sent to the Portainer chat assistant. */ message: pulumi.Input; /** * AI model name used to generate the chat response (defaults to `gpt-3.5-turbo`). */ model?: pulumi.Input; } //# sourceMappingURL=chat.d.ts.map