import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve information the list of existing OAuth2 service account IDs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myOauth2Clients = ovh.Me.getAPIOAuth2Clients({}); * ``` */ export declare function getAPIOAuth2Clients(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getAPIOAuth2Clients. */ export interface GetAPIOAuth2ClientsResult { /** * The list of all the existing client IDs. */ readonly clientIds: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Use this data source to retrieve information the list of existing OAuth2 service account IDs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myOauth2Clients = ovh.Me.getAPIOAuth2Clients({}); * ``` */ export declare function getAPIOAuth2ClientsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;