import * as pulumi from "@pulumi/pulumi"; /** * Initiate change password request for a system user on a supported product. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const changeAdminAosPassword = new nutanix.PasswordChangeRequestV2("change_admin_aos_password", { * extId: "557329fc-6f28-44e4-8905-12c54d704ff9", * currentPassword: "M4zGWn^Haxs0za~", * newPassword: "*yk@1+U0syIr", * }); * ``` * */ export declare class PasswordChangeRequestV2 extends pulumi.CustomResource { /** * Get an existing PasswordChangeRequestV2 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?: PasswordChangeRequestV2State, opts?: pulumi.CustomResourceOptions): PasswordChangeRequestV2; /** * Returns true if the given object is an instance of PasswordChangeRequestV2. 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 PasswordChangeRequestV2; /** * -(Optional) Existing password of a user account. */ readonly currentPassword: pulumi.Output; /** * -(Required) External identifier of the system user password. */ readonly extId: pulumi.Output; /** * -(Required) New password for a user account. * * * See detailed information in [Nutanix Initiate password update for a system user V4](https://developers.nutanix.com/api-reference?namespace=clustermgmt&version=v4.2#tag/PasswordManager/operation/changeSystemUserPasswordById). */ readonly newPassword: pulumi.Output; /** * Create a PasswordChangeRequestV2 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: PasswordChangeRequestV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PasswordChangeRequestV2 resources. */ export interface PasswordChangeRequestV2State { /** * -(Optional) Existing password of a user account. */ currentPassword?: pulumi.Input; /** * -(Required) External identifier of the system user password. */ extId?: pulumi.Input; /** * -(Required) New password for a user account. * * * See detailed information in [Nutanix Initiate password update for a system user V4](https://developers.nutanix.com/api-reference?namespace=clustermgmt&version=v4.2#tag/PasswordManager/operation/changeSystemUserPasswordById). */ newPassword?: pulumi.Input; } /** * The set of arguments for constructing a PasswordChangeRequestV2 resource. */ export interface PasswordChangeRequestV2Args { /** * -(Optional) Existing password of a user account. */ currentPassword?: pulumi.Input; /** * -(Required) External identifier of the system user password. */ extId: pulumi.Input; /** * -(Required) New password for a user account. * * * See detailed information in [Nutanix Initiate password update for a system user V4](https://developers.nutanix.com/api-reference?namespace=clustermgmt&version=v4.2#tag/PasswordManager/operation/changeSystemUserPasswordById). */ newPassword: pulumi.Input; } //# sourceMappingURL=passwordChangeRequestV2.d.ts.map