import * as pulumi from "@pulumi/pulumi"; /** * Creates and manages Scaleway IAM Applications. For more information refer to the [IAM API documentation](https://www.scaleway.com/en/developers/api/iam/#applications-83ce5e). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@ediri/scaleway"; * * const main = new scaleway.IamApplication("main", {description: "a description"}); * ``` * * ## Import * * Applications can be imported using the `{id}`, e.g. * * bash * * ```sh * $ pulumi import scaleway:index/iamApplication:IamApplication main 11111111-1111-1111-1111-111111111111 * ``` */ export declare class IamApplication extends pulumi.CustomResource { /** * Get an existing IamApplication 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?: IamApplicationState, opts?: pulumi.CustomResourceOptions): IamApplication; /** * Returns true if the given object is an instance of IamApplication. 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 IamApplication; /** * The date and time of the creation of the application. */ readonly createdAt: pulumi.Output; /** * The description of the iam application. */ readonly description: pulumi.Output; /** * Whether the application is editable. */ readonly editable: pulumi.Output; /** * The name of the iam application. */ readonly name: pulumi.Output; /** * `organizationId`) The ID of the organization the application is associated with. */ readonly organizationId: pulumi.Output; /** * The tags associated with the application. */ readonly tags: pulumi.Output; /** * The date and time of the last update of the application. */ readonly updatedAt: pulumi.Output; /** * Create a IamApplication 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?: IamApplicationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IamApplication resources. */ export interface IamApplicationState { /** * The date and time of the creation of the application. */ createdAt?: pulumi.Input; /** * The description of the iam application. */ description?: pulumi.Input; /** * Whether the application is editable. */ editable?: 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; /** * The tags associated with the application. */ tags?: pulumi.Input[]>; /** * The date and time of the last update of the application. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a IamApplication resource. */ export interface IamApplicationArgs { /** * The description of the iam application. */ description?: 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; /** * The tags associated with the application. */ tags?: pulumi.Input[]>; }