import * as pulumi from "@pulumi/pulumi"; /** * > **Deprecated:** Use `proxmoxve.user.Token` instead. This resource will be removed in v1.0. * * User API tokens. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * // if creating a user token, the user must be created first * const user = new proxmoxve.UserLegacy("user", { * comment: "Managed by Pulumi", * email: "user@pve", * enabled: true, * expirationDate: "2034-01-01T22:00:00Z", * userId: "user@pve", * }); * const userToken = new proxmoxve.user.TokenLegacy("user_token", { * comment: "Managed by Pulumi", * expirationDate: "2033-01-01T22:00:00Z", * tokenName: "tk1", * userId: user.userId, * }); * ``` * * ## Import * * !/usr/bin/env sh * Tokens can be imported using they identifiers in format `user_id!token_name` format, e.g.: * * ```sh * $ pulumi import proxmoxve:user/tokenLegacy:TokenLegacy token1 user@pve!token1 * ``` */ export declare class TokenLegacy extends pulumi.CustomResource { /** * Get an existing TokenLegacy 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?: TokenLegacyState, opts?: pulumi.CustomResourceOptions): TokenLegacy; /** * Returns true if the given object is an instance of TokenLegacy. 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 TokenLegacy; /** * Comment for the token. */ readonly comment: pulumi.Output; /** * Expiration date for the token. */ readonly expirationDate: pulumi.Output; /** * Restrict API token privileges with separate ACLs (default), or give full privileges of corresponding user. */ readonly privilegesSeparation: pulumi.Output; /** * User-specific token identifier. */ readonly tokenName: pulumi.Output; /** * User identifier. */ readonly userId: pulumi.Output; /** * API token value used for authentication. It is populated only when creating a new token, and can't be retrieved at import. */ readonly value: pulumi.Output; /** * Create a TokenLegacy 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: TokenLegacyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TokenLegacy resources. */ export interface TokenLegacyState { /** * Comment for the token. */ comment?: pulumi.Input; /** * Expiration date for the token. */ expirationDate?: pulumi.Input; /** * Restrict API token privileges with separate ACLs (default), or give full privileges of corresponding user. */ privilegesSeparation?: pulumi.Input; /** * User-specific token identifier. */ tokenName?: pulumi.Input; /** * User identifier. */ userId?: pulumi.Input; /** * API token value used for authentication. It is populated only when creating a new token, and can't be retrieved at import. */ value?: pulumi.Input; } /** * The set of arguments for constructing a TokenLegacy resource. */ export interface TokenLegacyArgs { /** * Comment for the token. */ comment?: pulumi.Input; /** * Expiration date for the token. */ expirationDate?: pulumi.Input; /** * Restrict API token privileges with separate ACLs (default), or give full privileges of corresponding user. */ privilegesSeparation?: pulumi.Input; /** * User-specific token identifier. */ tokenName: pulumi.Input; /** * User identifier. */ userId: pulumi.Input; } //# sourceMappingURL=tokenLegacy.d.ts.map