import * as pulumi from "@pulumi/pulumi"; export declare class AccountSubuser extends pulumi.CustomResource { /** * Get an existing AccountSubuser 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?: AccountSubuserState, opts?: pulumi.CustomResourceOptions): AccountSubuser; /** * Returns true if the given object is an instance of AccountSubuser. 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 AccountSubuser; /** * The user's email address. */ readonly email: pulumi.Output; /** * The user's first name. */ readonly firstname: pulumi.Output; /** * The user's last name. */ readonly lastname: pulumi.Output; /** * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations. * The user's password. This is a write-only field: to update it after creation, re-create the resource. */ readonly password: pulumi.Output; /** * Options: `abuse`, `billing`, `support`, `users`, `zones` */ readonly permissions: pulumi.Output; /** * Create a AccountSubuser 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: AccountSubuserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AccountSubuser resources. */ export interface AccountSubuserState { /** * The user's email address. */ email?: pulumi.Input; /** * The user's first name. */ firstname?: pulumi.Input; /** * The user's last name. */ lastname?: pulumi.Input; /** * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations. * The user's password. This is a write-only field: to update it after creation, re-create the resource. */ password?: pulumi.Input; /** * Options: `abuse`, `billing`, `support`, `users`, `zones` */ permissions?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a AccountSubuser resource. */ export interface AccountSubuserArgs { /** * The user's email address. */ email: pulumi.Input; /** * The user's first name. */ firstname: pulumi.Input; /** * The user's last name. */ lastname: pulumi.Input; /** * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations. * The user's password. This is a write-only field: to update it after creation, re-create the resource. */ password?: pulumi.Input; /** * Options: `abuse`, `billing`, `support`, `users`, `zones` */ permissions: pulumi.Input[]>; } //# sourceMappingURL=accountSubuser.d.ts.map