@pulumi/digitalocean
Version:
A Pulumi package for creating and managing DigitalOcean cloud resources.
33 lines (32 loc) • 1.15 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
export declare function getGenaiOpenaiApiKey(args: GetGenaiOpenaiApiKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetGenaiOpenaiApiKeyResult>;
/**
* A collection of arguments for invoking getGenaiOpenaiApiKey.
*/
export interface GetGenaiOpenaiApiKeyArgs {
uuid: string;
}
/**
* A collection of values returned by getGenaiOpenaiApiKey.
*/
export interface GetGenaiOpenaiApiKeyResult {
readonly createdAt: string;
readonly createdBy: string;
readonly deletedAt: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly models: outputs.GetGenaiOpenaiApiKeyModel[];
readonly name: string;
readonly updatedAt: string;
readonly uuid: string;
}
export declare function getGenaiOpenaiApiKeyOutput(args: GetGenaiOpenaiApiKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGenaiOpenaiApiKeyResult>;
/**
* A collection of arguments for invoking getGenaiOpenaiApiKey.
*/
export interface GetGenaiOpenaiApiKeyOutputArgs {
uuid: pulumi.Input<string>;
}