import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface HostHostgroupMembershipConfig extends cdktf.TerraformMetaArguments { /** * **deprecated** Host to add. Will be replaced by hosts. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/host_hostgroup_membership#host HostHostgroupMembership#host} */ readonly host?: string; /** * **deprecated** Hostgroup to add. Will be replaced by hostgroups. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/host_hostgroup_membership#hostgroup HostHostgroupMembership#hostgroup} */ readonly hostgroup?: string; /** * Hostgroups to add as hostgroup members * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/host_hostgroup_membership#hostgroups HostHostgroupMembership#hostgroups} */ readonly hostgroups?: string[]; /** * Hosts to add as hostgroup members * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/host_hostgroup_membership#hosts HostHostgroupMembership#hosts} */ readonly hosts?: string[]; /** * Unique identifier to differentiate multiple hostgroup membership resources on the same hostgroup. Manadatory for using hosts/hostgroups configurations. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/host_hostgroup_membership#identifier HostHostgroupMembership#identifier} */ readonly identifier?: string; /** * Hostgroup name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/host_hostgroup_membership#name HostHostgroupMembership#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/host_hostgroup_membership freeipa_host_hostgroup_membership} */ export declare class HostHostgroupMembership extends cdktf.TerraformResource { static readonly tfResourceType = "freeipa_host_hostgroup_membership"; /** * Generates CDKTF code for importing a HostHostgroupMembership 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 HostHostgroupMembership to import * @param importFromId The id of the existing HostHostgroupMembership that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/host_hostgroup_membership#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the HostHostgroupMembership 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/host_hostgroup_membership freeipa_host_hostgroup_membership} 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 HostHostgroupMembershipConfig */ constructor(scope: Construct, id: string, config: HostHostgroupMembershipConfig); private _host?; get host(): string; set host(value: string); resetHost(): void; get hostInput(): string; private _hostgroup?; get hostgroup(): string; set hostgroup(value: string); resetHostgroup(): void; get hostgroupInput(): string; private _hostgroups?; get hostgroups(): string[]; set hostgroups(value: string[]); resetHostgroups(): void; get hostgroupsInput(): string[]; private _hosts?; get hosts(): string[]; set hosts(value: string[]); resetHosts(): void; get hostsInput(): string[]; get id(): any; private _identifier?; get identifier(): string; set identifier(value: string); resetIdentifier(): void; get identifierInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }