import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OrganizationOrgShareUnitResourceConfig extends cdktf.TerraformMetaArguments { /** * Shared unit area. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_share_unit_resource#area OrganizationOrgShareUnitResource#area} */ readonly area: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_share_unit_resource#id OrganizationOrgShareUnitResource#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; /** * Product Resource ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_share_unit_resource#product_resource_id OrganizationOrgShareUnitResource#product_resource_id} */ readonly productResourceId: string; /** * Shared resource type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_share_unit_resource#type OrganizationOrgShareUnitResource#type} */ readonly type: string; /** * Shared unit ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_share_unit_resource#unit_id OrganizationOrgShareUnitResource#unit_id} */ readonly unitId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_share_unit_resource tencentcloud_organization_org_share_unit_resource} */ export declare class OrganizationOrgShareUnitResource extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_organization_org_share_unit_resource"; /** * Generates CDKTF code for importing a OrganizationOrgShareUnitResource 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 OrganizationOrgShareUnitResource to import * @param importFromId The id of the existing OrganizationOrgShareUnitResource that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_share_unit_resource#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OrganizationOrgShareUnitResource 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_share_unit_resource tencentcloud_organization_org_share_unit_resource} 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 OrganizationOrgShareUnitResourceConfig */ constructor(scope: Construct, id: string, config: OrganizationOrgShareUnitResourceConfig); private _area?; get area(): string; set area(value: string); get areaInput(): string; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _productResourceId?; get productResourceId(): string; set productResourceId(value: string); get productResourceIdInput(): string; get resourceId(): any; get shareManagerUin(): any; get sharedMemberNum(): any; get sharedMemberUseNum(): any; private _type?; get type(): string; set type(value: string); get typeInput(): string; private _unitId?; get unitId(): string; set unitId(value: string); get unitIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }