import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MpsFeatureConfig extends cdktf.TerraformMetaArguments { /** * This is Admin controllable. 0: Disable UI and Backend, 1: Disable UI and enable Backend, 2: Enable UI and disable Backend, 3: Enable UI and Backend.. Maximum value = * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_feature#admin_toggle MpsFeature#admin_toggle} */ readonly adminToggle?: number; /** * This is Ops controllable and will not be visible to the Admin to control. If true: Ops controllable feature, false: Admin controllable feature.. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_feature#built_in MpsFeature#built_in} */ readonly builtIn?: boolean | cdktf.IResolvable; /** * Feature Description.. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_feature#description MpsFeature#description} */ readonly description?: string; /** * Feature Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_feature#feature_name MpsFeature#feature_name} */ readonly featureName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_feature#id MpsFeature#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; /** * This is Ops controllable. 0: Disable UI and Backend, 1: Disable UI and enable Backend, 2: Enable UI and disable Backend, 3: Enable UI and Backend. Ops controlled takes higher precedence than Admin Controlled.. Maximum value = * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_feature#ops_toggle MpsFeature#ops_toggle} */ readonly opsToggle?: number; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_feature netscalersdx_mps_feature} */ export declare class MpsFeature extends cdktf.TerraformResource { static readonly tfResourceType = "netscalersdx_mps_feature"; /** * Generates CDKTF code for importing a MpsFeature 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 MpsFeature to import * @param importFromId The id of the existing MpsFeature that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mps_feature#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MpsFeature 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_feature netscalersdx_mps_feature} 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 MpsFeatureConfig */ constructor(scope: Construct, id: string, config: MpsFeatureConfig); private _adminToggle?; get adminToggle(): number; set adminToggle(value: number); resetAdminToggle(): void; get adminToggleInput(): number; private _builtIn?; get builtIn(): boolean | cdktf.IResolvable; set builtIn(value: boolean | cdktf.IResolvable); resetBuiltIn(): void; get builtInInput(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _featureName?; get featureName(): string; set featureName(value: string); get featureNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _opsToggle?; get opsToggle(): number; set opsToggle(value: number); resetOpsToggle(): void; get opsToggleInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }