import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface IdentityCenterRoleAssignmentConfig extends cdktf.TerraformMetaArguments { /** * When you remove the last authorization configured with a certain privilege on a group account target account, whether to cancel the privilege configuration deployment at the same time. Value: DeprovisionForLastRoleAssignmentOnAccount: Remove privileges to configure deployment. None (default): Configure deployment without delegating privileges. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#deprovision_strategy IdentityCenterRoleAssignment#deprovision_strategy} */ readonly deprovisionStrategy?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#id IdentityCenterRoleAssignment#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; /** * Identity ID for the CAM user synchronization. Valid values: * When the PrincipalType value is Group, it is the CIC user group ID (g-********). * When the PrincipalType value is User, it is the CIC user ID (u-********). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#principal_id IdentityCenterRoleAssignment#principal_id} */ readonly principalId: string; /** * Identity type for the CAM user synchronization. Valid values: * * User: indicates that the identity for the CAM user synchronization is a CIC user. * Group: indicates that the identity for the CAM user synchronization is a CIC user group. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#principal_type IdentityCenterRoleAssignment#principal_type} */ readonly principalType: string; /** * Permission configuration ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#role_configuration_id IdentityCenterRoleAssignment#role_configuration_id} */ readonly roleConfigurationId: string; /** * Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#target_type IdentityCenterRoleAssignment#target_type} */ readonly targetType: string; /** * UIN of the synchronized target account of the Tencent Cloud Organization. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#target_uin IdentityCenterRoleAssignment#target_uin} */ readonly targetUin: number; /** * Space ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#zone_id IdentityCenterRoleAssignment#zone_id} */ readonly zoneId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment tencentcloud_identity_center_role_assignment} */ export declare class IdentityCenterRoleAssignment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_identity_center_role_assignment"; /** * Generates CDKTF code for importing a IdentityCenterRoleAssignment 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 IdentityCenterRoleAssignment to import * @param importFromId The id of the existing IdentityCenterRoleAssignment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the IdentityCenterRoleAssignment 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/tencentcloudstack/tencentcloud/1.82.49/docs/resources/identity_center_role_assignment tencentcloud_identity_center_role_assignment} 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 IdentityCenterRoleAssignmentConfig */ constructor(scope: Construct, id: string, config: IdentityCenterRoleAssignmentConfig); get createTime(): any; private _deprovisionStrategy?; get deprovisionStrategy(): string; set deprovisionStrategy(value: string); resetDeprovisionStrategy(): void; get deprovisionStrategyInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _principalId?; get principalId(): string; set principalId(value: string); get principalIdInput(): string; get principalName(): any; private _principalType?; get principalType(): string; set principalType(value: string); get principalTypeInput(): string; private _roleConfigurationId?; get roleConfigurationId(): string; set roleConfigurationId(value: string); get roleConfigurationIdInput(): string; get roleConfigurationName(): any; get targetName(): any; private _targetType?; get targetType(): string; set targetType(value: string); get targetTypeInput(): string; private _targetUin?; get targetUin(): number; set targetUin(value: number); get targetUinInput(): number; get updateTime(): any; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }