import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CamPolicyVersionConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_policy_version#id CamPolicyVersion#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; /** * Strategic text information. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_policy_version#policy_document CamPolicyVersion#policy_document} */ readonly policyDocument: string; /** * Strategy ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_policy_version#policy_id CamPolicyVersion#policy_id} */ readonly policyId: number; /** * Whether to set as a version of the current strategy. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_policy_version#set_as_default CamPolicyVersion#set_as_default} */ readonly setAsDefault: boolean | cdktf.IResolvable; /** * policy_version block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_policy_version#policy_version CamPolicyVersion#policy_version} */ readonly policyVersion?: CamPolicyVersionPolicyVersion[] | cdktf.IResolvable; } export interface CamPolicyVersionPolicyVersion { } export declare function camPolicyVersionPolicyVersionToTerraform(struct?: CamPolicyVersionPolicyVersion | cdktf.IResolvable): any; export declare function camPolicyVersionPolicyVersionToHclTerraform(struct?: CamPolicyVersionPolicyVersion | cdktf.IResolvable): any; export declare class CamPolicyVersionPolicyVersionOutputReference 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(): CamPolicyVersionPolicyVersion | cdktf.IResolvable | undefined; set internalValue(value: CamPolicyVersionPolicyVersion | cdktf.IResolvable | undefined); get createDate(): any; get document(): any; get isDefaultVersion(): any; get versionId(): any; } export declare class CamPolicyVersionPolicyVersionList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: CamPolicyVersionPolicyVersion[] | 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): CamPolicyVersionPolicyVersionOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_policy_version tencentcloud_cam_policy_version} */ export declare class CamPolicyVersion extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cam_policy_version"; /** * Generates CDKTF code for importing a CamPolicyVersion 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 CamPolicyVersion to import * @param importFromId The id of the existing CamPolicyVersion that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_policy_version#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CamPolicyVersion 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/cam_policy_version tencentcloud_cam_policy_version} 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 CamPolicyVersionConfig */ constructor(scope: Construct, id: string, config: CamPolicyVersionConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _policyDocument?; get policyDocument(): string; set policyDocument(value: string); get policyDocumentInput(): string; private _policyId?; get policyId(): number; set policyId(value: number); get policyIdInput(): number; private _setAsDefault?; get setAsDefault(): boolean | cdktf.IResolvable; set setAsDefault(value: boolean | cdktf.IResolvable); get setAsDefaultInput(): any; private _policyVersion; get policyVersion(): CamPolicyVersionPolicyVersionList; putPolicyVersion(value: CamPolicyVersionPolicyVersion[] | cdktf.IResolvable): void; resetPolicyVersion(): void; get policyVersionInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }