import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OrganizationOrgIdentityConfig extends cdktf.TerraformMetaArguments { /** * Identity description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#description OrganizationOrgIdentity#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#id OrganizationOrgIdentity#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 name.Supports English letters and numbers, the length cannot exceed 40 characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#identity_alias_name OrganizationOrgIdentity#identity_alias_name} */ readonly identityAliasName: string; /** * identity_policy block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#identity_policy OrganizationOrgIdentity#identity_policy} */ readonly identityPolicy: OrganizationOrgIdentityIdentityPolicy[] | cdktf.IResolvable; } export interface OrganizationOrgIdentityIdentityPolicy { /** * Customize policy content and follow CAM policy syntax. Valid and required when PolicyType is the 1-custom policy. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#policy_document OrganizationOrgIdentity#policy_document} */ readonly policyDocument?: string; /** * CAM default policy ID. Valid and required when PolicyType is the 2-preset policy. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#policy_id OrganizationOrgIdentity#policy_id} */ readonly policyId?: number; /** * CAM default policy name. Valid and required when PolicyType is the 2-preset policy. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#policy_name OrganizationOrgIdentity#policy_name} */ readonly policyName?: string; /** * Policy type. Value 1-custom policy 2-preset policy; default value 2. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#policy_type OrganizationOrgIdentity#policy_type} */ readonly policyType?: number; } export declare function organizationOrgIdentityIdentityPolicyToTerraform(struct?: OrganizationOrgIdentityIdentityPolicy | cdktf.IResolvable): any; export declare function organizationOrgIdentityIdentityPolicyToHclTerraform(struct?: OrganizationOrgIdentityIdentityPolicy | cdktf.IResolvable): any; export declare class OrganizationOrgIdentityIdentityPolicyOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): OrganizationOrgIdentityIdentityPolicy | cdktf.IResolvable | undefined; set internalValue(value: OrganizationOrgIdentityIdentityPolicy | cdktf.IResolvable | undefined); private _policyDocument?; get policyDocument(): string; set policyDocument(value: string); resetPolicyDocument(): void; get policyDocumentInput(): string; private _policyId?; get policyId(): number; set policyId(value: number); resetPolicyId(): void; get policyIdInput(): number; private _policyName?; get policyName(): string; set policyName(value: string); resetPolicyName(): void; get policyNameInput(): string; private _policyType?; get policyType(): number; set policyType(value: number); resetPolicyType(): void; get policyTypeInput(): number; } export declare class OrganizationOrgIdentityIdentityPolicyList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: OrganizationOrgIdentityIdentityPolicy[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): OrganizationOrgIdentityIdentityPolicyOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity tencentcloud_organization_org_identity} */ export declare class OrganizationOrgIdentity extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_organization_org_identity"; /** * Generates CDKTF code for importing a OrganizationOrgIdentity 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 OrganizationOrgIdentity to import * @param importFromId The id of the existing OrganizationOrgIdentity that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/organization_org_identity#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OrganizationOrgIdentity 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_identity tencentcloud_organization_org_identity} 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 OrganizationOrgIdentityConfig */ constructor(scope: Construct, id: string, config: OrganizationOrgIdentityConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _identityAliasName?; get identityAliasName(): string; set identityAliasName(value: string); get identityAliasNameInput(): string; private _identityPolicy; get identityPolicy(): OrganizationOrgIdentityIdentityPolicyList; putIdentityPolicy(value: OrganizationOrgIdentityIdentityPolicy[] | cdktf.IResolvable): void; get identityPolicyInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }