import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OrganizationOrgManagePolicyTargetConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_manage_policy_target#id OrganizationOrgManagePolicyTarget#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; /** * Policy Id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_manage_policy_target#policy_id OrganizationOrgManagePolicyTarget#policy_id} */ readonly policyId: number; /** * Policy type. Default value is SERVICE_CONTROL_POLICY. * Valid values: * - `SERVICE_CONTROL_POLICY`: Service control policy. * - `TAG_POLICY`: Tag policy. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_manage_policy_target#policy_type OrganizationOrgManagePolicyTarget#policy_type} */ readonly policyType?: string; /** * Binding target ID of the policy. Member Uin or Department ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_manage_policy_target#target_id OrganizationOrgManagePolicyTarget#target_id} */ readonly targetId: number; /** * Target type. * Valid values: * - `NODE`: Department. * - `MEMBER`: Check Member. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_manage_policy_target#target_type OrganizationOrgManagePolicyTarget#target_type} */ readonly targetType: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_manage_policy_target tencentcloud_organization_org_manage_policy_target} */ export declare class OrganizationOrgManagePolicyTarget extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_organization_org_manage_policy_target"; /** * Generates CDKTF code for importing a OrganizationOrgManagePolicyTarget 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 OrganizationOrgManagePolicyTarget to import * @param importFromId The id of the existing OrganizationOrgManagePolicyTarget that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_manage_policy_target#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OrganizationOrgManagePolicyTarget 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/organization_org_manage_policy_target tencentcloud_organization_org_manage_policy_target} 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 OrganizationOrgManagePolicyTargetConfig */ constructor(scope: Construct, id: string, config: OrganizationOrgManagePolicyTargetConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _policyId?; get policyId(): number; set policyId(value: number); get policyIdInput(): number; private _policyType?; get policyType(): string; set policyType(value: string); resetPolicyType(): void; get policyTypeInput(): string; private _targetId?; get targetId(): number; set targetId(value: number); get targetIdInput(): number; private _targetType?; get targetType(): string; set targetType(value: string); get targetTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }