import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MpsAnimatedGraphicsTemplateConfig extends cdktf.TerraformMetaArguments { /** * Template description information, length limit: 256 characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#comment MpsAnimatedGraphicsTemplate#comment} */ readonly comment?: string; /** * Animation format, the values are gif and webp. Default is gif. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#format MpsAnimatedGraphicsTemplate#format} */ readonly format?: string; /** * Frame rate, value range: [1, 30], unit: Hz. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#fps MpsAnimatedGraphicsTemplate#fps} */ readonly fps: number; /** * The maximum value of the animation height (or short side), value range: 0 and [128, 4096], unit: px.When Width and Height are both 0, the resolution is the same.When Width is 0 and Height is not 0, Width is scaled proportionally.When Width is not 0 and Height is 0, Height is scaled proportionally.When both Width and Height are not 0, the resolution is specified by the user.Default value: 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#height MpsAnimatedGraphicsTemplate#height} */ readonly height?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#id MpsAnimatedGraphicsTemplate#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; /** * Rotation diagram template name, length limit: 64 characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#name MpsAnimatedGraphicsTemplate#name} */ readonly name?: string; /** * Image quality, value range: [1, 100], default value is 75. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#quality MpsAnimatedGraphicsTemplate#quality} */ readonly quality?: number; /** * Adaptive resolution, optional value:open: At this time, Width represents the long side of the video, Height represents the short side of the video.close: At this point, Width represents the width of the video, and Height represents the height of the video.Default value: open. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#resolution_adaptive MpsAnimatedGraphicsTemplate#resolution_adaptive} */ readonly resolutionAdaptive?: string; /** * The maximum value of the animation width (or long side), value range: 0 and [128, 4096], unit: px.When Width and Height are both 0, the resolution is the same.When Width is 0 and Height is not 0, Width is scaled proportionally.When Width is not 0 and Height is 0, Height is scaled proportionally.When both Width and Height are not 0, the resolution is specified by the user.Default value: 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#width MpsAnimatedGraphicsTemplate#width} */ readonly width?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template tencentcloud_mps_animated_graphics_template} */ export declare class MpsAnimatedGraphicsTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_mps_animated_graphics_template"; /** * Generates CDKTF code for importing a MpsAnimatedGraphicsTemplate 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 MpsAnimatedGraphicsTemplate to import * @param importFromId The id of the existing MpsAnimatedGraphicsTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mps_animated_graphics_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MpsAnimatedGraphicsTemplate 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/mps_animated_graphics_template tencentcloud_mps_animated_graphics_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 MpsAnimatedGraphicsTemplateConfig */ constructor(scope: Construct, id: string, config: MpsAnimatedGraphicsTemplateConfig); private _comment?; get comment(): string; set comment(value: string); resetComment(): void; get commentInput(): string; private _format?; get format(): string; set format(value: string); resetFormat(): void; get formatInput(): string; private _fps?; get fps(): number; set fps(value: number); get fpsInput(): number; private _height?; get height(): number; set height(value: number); resetHeight(): void; get heightInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _quality?; get quality(): number; set quality(value: number); resetQuality(): void; get qualityInput(): number; private _resolutionAdaptive?; get resolutionAdaptive(): string; set resolutionAdaptive(value: string); resetResolutionAdaptive(): void; get resolutionAdaptiveInput(): string; private _width?; get width(): number; set width(value: number); resetWidth(): void; get widthInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }