import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OrgauthorizationPairingConfig extends cdktf.TerraformMetaArguments { /** * The list of trustee groups that are requesting access. If no groups are specified, at least one user is required. Changing the group_ids attribute will cause the orgauthorization_pairing resource to be dropped and recreated with a new ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/orgauthorization_pairing#group_ids OrgauthorizationPairing#group_ids} */ readonly groupIds?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/orgauthorization_pairing#id OrgauthorizationPairing#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; /** * The list of trustee users that are requesting access. If no users are specified, at least one group is required. Changing the user_ids attribute will cause the orgauthorization_pairing resource to be dropped and recreated with a new ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/orgauthorization_pairing#user_ids OrgauthorizationPairing#user_ids} */ readonly userIds?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/orgauthorization_pairing genesyscloud_orgauthorization_pairing} */ export declare class OrgauthorizationPairing extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_orgauthorization_pairing"; /** * Generates CDKTF code for importing a OrgauthorizationPairing 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 OrgauthorizationPairing to import * @param importFromId The id of the existing OrgauthorizationPairing that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/orgauthorization_pairing#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OrgauthorizationPairing 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/orgauthorization_pairing genesyscloud_orgauthorization_pairing} 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 OrgauthorizationPairingConfig = {} */ constructor(scope: Construct, id: string, config?: OrgauthorizationPairingConfig); private _groupIds?; get groupIds(): string[]; set groupIds(value: string[]); resetGroupIds(): void; get groupIdsInput(): string[]; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _userIds?; get userIds(): string[]; set userIds(value: string[]); resetUserIds(): void; get userIdsInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }