import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides Nutanix resource to Revoke the requested key for a user. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * // revoke key * const revoke_key = new nutanix.UserKeyRevokeV2("revoke-key", { * userExtId: "", * extId: "", * }); * ``` * * * ## Argument Reference * * The following arguments are supported: * * * `userExtId`: - ( Required ) External Identifier of the User. * * `extId`: - ( Required ) External identifier of the key. */ export declare class UserKeyRevokeV2 extends pulumi.CustomResource { /** * Get an existing UserKeyRevokeV2 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?: UserKeyRevokeV2State, opts?: pulumi.CustomResourceOptions): UserKeyRevokeV2; /** * Returns true if the given object is an instance of UserKeyRevokeV2. 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 UserKeyRevokeV2; /** * - The map of argument name to value. */ readonly argumentsMaps: pulumi.Output; /** * - The code associated with this message.This string is typically prefixed by the namespace the endpoint belongs to. For example: VMM-40000. */ readonly code: pulumi.Output; /** * - The error group associated with this message of severity ERROR. */ readonly errorGroup: pulumi.Output; readonly extId: pulumi.Output; /** * - Locale for this message. The default locale would be 'en-US'. */ readonly locale: pulumi.Output; /** * - The message string. */ readonly message: pulumi.Output; /** * - The message severity. */ readonly severity: pulumi.Output; readonly userExtId: pulumi.Output; /** * Create a UserKeyRevokeV2 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: UserKeyRevokeV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering UserKeyRevokeV2 resources. */ export interface UserKeyRevokeV2State { /** * - The map of argument name to value. */ argumentsMaps?: pulumi.Input[] | undefined>; /** * - The code associated with this message.This string is typically prefixed by the namespace the endpoint belongs to. For example: VMM-40000. */ code?: pulumi.Input; /** * - The error group associated with this message of severity ERROR. */ errorGroup?: pulumi.Input; extId?: pulumi.Input; /** * - Locale for this message. The default locale would be 'en-US'. */ locale?: pulumi.Input; /** * - The message string. */ message?: pulumi.Input; /** * - The message severity. */ severity?: pulumi.Input; userExtId?: pulumi.Input; } /** * The set of arguments for constructing a UserKeyRevokeV2 resource. */ export interface UserKeyRevokeV2Args { extId: pulumi.Input; userExtId: pulumi.Input; } //# sourceMappingURL=userKeyRevokeV2.d.ts.map