import * as pulumi from "@pulumi/pulumi"; /** * Gets information about an existing IAM application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const findByName = scaleway.getIamApplication({ * name: "foobar", * }); * const findById = scaleway.getIamApplication({ * applicationId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getIamApplication(args?: GetIamApplicationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIamApplication. */ export interface GetIamApplicationArgs { /** * The ID of the IAM application. * * > **Note** You must specify at least one: `name` and/or `applicationId`. */ applicationId?: string; /** * The name of the IAM application. */ name?: string; /** * `organizationId`) The ID of the * Organization the application is associated with. */ organizationId?: string; } /** * A collection of values returned by getIamApplication. */ export interface GetIamApplicationResult { readonly applicationId?: string; readonly createdAt: string; readonly description: string; readonly editable: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name?: string; readonly organizationId?: string; readonly tags: string[]; readonly updatedAt: string; } /** * Gets information about an existing IAM application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const findByName = scaleway.getIamApplication({ * name: "foobar", * }); * const findById = scaleway.getIamApplication({ * applicationId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getIamApplicationOutput(args?: GetIamApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIamApplication. */ export interface GetIamApplicationOutputArgs { /** * The ID of the IAM application. * * > **Note** You must specify at least one: `name` and/or `applicationId`. */ applicationId?: pulumi.Input; /** * The name of the IAM application. */ name?: pulumi.Input; /** * `organizationId`) The ID of the * Organization the application is associated with. */ organizationId?: pulumi.Input; }