import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MpsSslCertkeyConfig extends cdktf.TerraformMetaArguments { /** * SHA-1 Fingerprint of NetScaler ADM SSL Certificate. Minimum length = 1 Maximum length = 512 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_ssl_certkey#fingerprint MpsSslCertkey#fingerprint} */ readonly fingerprint?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_ssl_certkey#id MpsSslCertkey#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 pass-phrase that was used to encrypt the private-key.. Maximum length = 32 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_ssl_certkey#password MpsSslCertkey#password} */ readonly password?: string; /** * File name of a valid certificate. The certificate file must be located in the `/var/mps/ssl_certs/` directory on the Management Service virtual appliance(SDX). Minimum length = 1 Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_ssl_certkey#ssl_certificate MpsSslCertkey#ssl_certificate} */ readonly sslCertificate: string; /** * File name of the private key used to create the certificate. The key file must be located in the `/var/mps/ssl_certs/` directory on the Management Service virtual appliance(SDX). Minimum length = 1 Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_ssl_certkey#ssl_key MpsSslCertkey#ssl_key} */ readonly sslKey?: string; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_ssl_certkey netscalersdx_mps_ssl_certkey} */ export declare class MpsSslCertkey extends cdktf.TerraformResource { static readonly tfResourceType = "netscalersdx_mps_ssl_certkey"; /** * Generates CDKTF code for importing a MpsSslCertkey 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 MpsSslCertkey to import * @param importFromId The id of the existing MpsSslCertkey that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_ssl_certkey#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MpsSslCertkey 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/netscaler/netscalersdx/0.7.2/docs/resources/mps_ssl_certkey netscalersdx_mps_ssl_certkey} 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 MpsSslCertkeyConfig */ constructor(scope: Construct, id: string, config: MpsSslCertkeyConfig); private _fingerprint?; get fingerprint(): string; set fingerprint(value: string); resetFingerprint(): void; get fingerprintInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _password?; get password(): string; set password(value: string); resetPassword(): void; get passwordInput(): string; private _sslCertificate?; get sslCertificate(): string; set sslCertificate(value: string); get sslCertificateInput(): string; private _sslKey?; get sslKey(): string; set sslKey(value: string); resetSslKey(): void; get sslKeyInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }