import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AuthDivisionConfig extends cdktf.TerraformMetaArguments { /** * Division description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/auth_division#description AuthDivision#description} */ readonly description?: string; /** * True if this is the home division. This can be set to manage the pre-existing home division. Note: If name attribute is changed, this will cause the auth_division to be dropped and recreated. This will generate a new ID the division. Existing objects with the old division will not be migrated to the new division * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/auth_division#home AuthDivision#home} */ readonly home?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/auth_division#id AuthDivision#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Division name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/auth_division#name AuthDivision#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/auth_division genesyscloud_auth_division} */ export declare class AuthDivision extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_auth_division"; /** * Generates CDKTF code for importing a AuthDivision resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the AuthDivision to import * @param importFromId The id of the existing AuthDivision that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/auth_division#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AuthDivision to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/auth_division genesyscloud_auth_division} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options AuthDivisionConfig */ constructor(scope: Construct, id: string, config: AuthDivisionConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _home?; get home(): boolean | cdktf.IResolvable; set home(value: boolean | cdktf.IResolvable); resetHome(): void; get homeInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }