import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SudoRuleOptionConfig extends cdktf.TerraformMetaArguments { /** * Sudo rule name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/sudo_rule_option#name SudoRuleOption#name} */ readonly name: string; /** * Sudo option to add to the sudo rule. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/sudo_rule_option#option SudoRuleOption#option} */ readonly option: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/sudo_rule_option freeipa_sudo_rule_option} */ export declare class SudoRuleOption extends cdktf.TerraformResource { static readonly tfResourceType = "freeipa_sudo_rule_option"; /** * Generates CDKTF code for importing a SudoRuleOption 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 SudoRuleOption to import * @param importFromId The id of the existing SudoRuleOption that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/sudo_rule_option#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SudoRuleOption 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/rework-space-com/freeipa/5.2.1/docs/resources/sudo_rule_option freeipa_sudo_rule_option} 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 SudoRuleOptionConfig */ constructor(scope: Construct, id: string, config: SudoRuleOptionConfig); get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _option?; get option(): string; set option(value: string); get optionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }