import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getGenaiAgentsByOpenaiApiKey(args: GetGenaiAgentsByOpenaiApiKeyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGenaiAgentsByOpenaiApiKey. */ export interface GetGenaiAgentsByOpenaiApiKeyArgs { uuid: string; } /** * A collection of values returned by getGenaiAgentsByOpenaiApiKey. */ export interface GetGenaiAgentsByOpenaiApiKeyResult { readonly agents: outputs.GetGenaiAgentsByOpenaiApiKeyAgent[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly uuid: string; } export declare function getGenaiAgentsByOpenaiApiKeyOutput(args: GetGenaiAgentsByOpenaiApiKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGenaiAgentsByOpenaiApiKey. */ export interface GetGenaiAgentsByOpenaiApiKeyOutputArgs { uuid: pulumi.Input; }