import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as minio from "@pulumi/minio"; * * export = async () => { * const test = new minio.IamUser("test", { * name: "test", * forceDestroy: true, * tags: { * "tag-key": "tag-value", * }, * }); * return { * test: test.id, * status: test.status, * secret: test.secret, * }; * } * ``` */ export declare class IamUser extends pulumi.CustomResource { /** * Get an existing IamUser 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?: IamUserState, opts?: pulumi.CustomResourceOptions): IamUser; /** * Returns true if the given object is an instance of IamUser. 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 IamUser; /** * Disable user */ readonly disableUser: pulumi.Output; /** * Delete user even if it has non-Terraform-managed IAM access keys */ readonly forceDestroy: pulumi.Output; readonly name: pulumi.Output; readonly secret: pulumi.Output; readonly status: pulumi.Output; readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Rotate Minio User Secret Key */ readonly updateSecret: pulumi.Output; /** * Create a IamUser 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?: IamUserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IamUser resources. */ export interface IamUserState { /** * Disable user */ disableUser?: pulumi.Input; /** * Delete user even if it has non-Terraform-managed IAM access keys */ forceDestroy?: pulumi.Input; name?: pulumi.Input; secret?: pulumi.Input; status?: pulumi.Input; tags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Rotate Minio User Secret Key */ updateSecret?: pulumi.Input; } /** * The set of arguments for constructing a IamUser resource. */ export interface IamUserArgs { /** * Disable user */ disableUser?: pulumi.Input; /** * Delete user even if it has non-Terraform-managed IAM access keys */ forceDestroy?: pulumi.Input; name?: pulumi.Input; secret?: pulumi.Input; tags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Rotate Minio User Secret Key */ updateSecret?: pulumi.Input; } //# sourceMappingURL=iamUser.d.ts.map