import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TeoContentIdentifierConfig extends cdktf.TerraformMetaArguments { /** * Description of the content identifier, length limit of up to 20 characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_content_identifier#description TeoContentIdentifier#description} */ readonly description: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_content_identifier#id TeoContentIdentifier#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; /** * Target plan id to be bound, available only for the enterprise edition.
  • if there is already a plan under your account, go to [plan management](https://console.cloud.tencent.com/edgeone/package) to get the plan id and directly bind the content identifier to the plan;
  • if you do not have a plan to bind, please purchase an enterprise edition plan first.
  • . * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_content_identifier#plan_id TeoContentIdentifier#plan_id} */ readonly planId: string; /** * tags block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_content_identifier#tags TeoContentIdentifier#tags} */ readonly tags?: TeoContentIdentifierTags[] | cdktf.IResolvable; } export interface TeoContentIdentifierTags { /** * The tag key. * Note: This field may return null, indicating that no valid values can be obtained. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_content_identifier#tag_key TeoContentIdentifier#tag_key} */ readonly tagKey: string; /** * The tag value. * Note: This field may return null, indicating that no valid values can be obtained. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_content_identifier#tag_value TeoContentIdentifier#tag_value} */ readonly tagValue: string; } export declare function teoContentIdentifierTagsToTerraform(struct?: TeoContentIdentifierTags | cdktf.IResolvable): any; export declare function teoContentIdentifierTagsToHclTerraform(struct?: TeoContentIdentifierTags | cdktf.IResolvable): any; export declare class TeoContentIdentifierTagsOutputReference 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(): TeoContentIdentifierTags | cdktf.IResolvable | undefined; set internalValue(value: TeoContentIdentifierTags | cdktf.IResolvable | undefined); private _tagKey?; get tagKey(): string; set tagKey(value: string); get tagKeyInput(): string; private _tagValue?; get tagValue(): string; set tagValue(value: string); get tagValueInput(): string; } export declare class TeoContentIdentifierTagsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: TeoContentIdentifierTags[] | 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): TeoContentIdentifierTagsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_content_identifier tencentcloud_teo_content_identifier} */ export declare class TeoContentIdentifier extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_teo_content_identifier"; /** * Generates CDKTF code for importing a TeoContentIdentifier 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 TeoContentIdentifier to import * @param importFromId The id of the existing TeoContentIdentifier that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_content_identifier#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TeoContentIdentifier 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/teo_content_identifier tencentcloud_teo_content_identifier} 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 TeoContentIdentifierConfig */ constructor(scope: Construct, id: string, config: TeoContentIdentifierConfig); get contentId(): any; get createdOn(): any; private _description?; get description(): string; set description(value: string); get descriptionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get modifiedOn(): any; private _planId?; get planId(): string; set planId(value: string); get planIdInput(): string; private _tags; get tags(): TeoContentIdentifierTagsList; putTags(value: TeoContentIdentifierTags[] | cdktf.IResolvable): void; resetTags(): void; get tagsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }