import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SslCertificateConfig extends cdktf.TerraformMetaArguments { /** * Content of the SSL certificate. Not allowed newline at the start and end. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate#cert SslCertificate#cert} */ readonly cert: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate#id SslCertificate#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; /** * Key of the SSL certificate and required when certificate type is `SVR`. Not allowed newline at the start and end. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate#key SslCertificate#key} */ readonly key?: string; /** * Name of the SSL certificate. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate#name SslCertificate#name} */ readonly name?: string; /** * Project ID of the SSL certificate. Default is `0`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate#project_id SslCertificate#project_id} */ readonly projectId?: number; /** * Tags of the SSL certificate. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate#tags SslCertificate#tags} */ readonly tags?: { [key: string]: string; }; /** * Type of the SSL certificate. Valid values: `CA` and `SVR`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate#type SslCertificate#type} */ readonly type: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate tencentcloud_ssl_certificate} */ export declare class SslCertificate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ssl_certificate"; /** * Generates CDKTF code for importing a SslCertificate 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 SslCertificate to import * @param importFromId The id of the existing SslCertificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ssl_certificate#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SslCertificate 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/ssl_certificate tencentcloud_ssl_certificate} 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 SslCertificateConfig */ constructor(scope: Construct, id: string, config: SslCertificateConfig); get beginTime(): any; private _cert?; get cert(): string; set cert(value: string); get certInput(): string; get createTime(): any; get domain(): any; get endTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _key?; get key(): string; set key(value: string); resetKey(): void; get keyInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; get productZhName(): any; private _projectId?; get projectId(): number; set projectId(value: number); resetProjectId(): void; get projectIdInput(): number; get status(): any; get subjectNames(): any; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; private _type?; get type(): string; set type(value: string); get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }