import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CiMediaSuperResolutionTemplateConfig extends cdktf.TerraformMetaArguments { /** * bucket name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_super_resolution_template#bucket CiMediaSuperResolutionTemplate#bucket} */ readonly bucket: string; /** * Auto scaling switch, off by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_super_resolution_template#enable_scale_up CiMediaSuperResolutionTemplate#enable_scale_up} */ readonly enableScaleUp?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_super_resolution_template#id CiMediaSuperResolutionTemplate#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; /** * The template name only supports `Chinese`, `English`, `numbers`, `_`, `-` and `*`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_super_resolution_template#name CiMediaSuperResolutionTemplate#name} */ readonly name: string; /** * Resolution Options sdtohd: Standard Definition to Ultra Definition, hdto4k: HD to 4K. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_super_resolution_template#resolution CiMediaSuperResolutionTemplate#resolution} */ readonly resolution: string; /** * version, default value Base, Base: basic version, Enhance: enhanced version. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_super_resolution_template#version CiMediaSuperResolutionTemplate#version} */ readonly version?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_super_resolution_template tencentcloud_ci_media_super_resolution_template} */ export declare class CiMediaSuperResolutionTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ci_media_super_resolution_template"; /** * Generates CDKTF code for importing a CiMediaSuperResolutionTemplate 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 CiMediaSuperResolutionTemplate to import * @param importFromId The id of the existing CiMediaSuperResolutionTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_super_resolution_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CiMediaSuperResolutionTemplate 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/ci_media_super_resolution_template tencentcloud_ci_media_super_resolution_template} 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 CiMediaSuperResolutionTemplateConfig */ constructor(scope: Construct, id: string, config: CiMediaSuperResolutionTemplateConfig); private _bucket?; get bucket(): string; set bucket(value: string); get bucketInput(): string; private _enableScaleUp?; get enableScaleUp(): string; set enableScaleUp(value: string); resetEnableScaleUp(): void; get enableScaleUpInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _resolution?; get resolution(): string; set resolution(value: string); get resolutionInput(): string; private _version?; get version(): string; set version(value: string); resetVersion(): void; get versionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }