import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface HostGroupConfig extends cdktf.TerraformMetaArguments { /** * The assignment rule used for dynamic host groups. Required if `type` is `dynamic`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group#assignment_rule HostGroup#assignment_rule} */ readonly assignmentRule?: string; /** * A description for the host group. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group#description HostGroup#description} */ readonly description: string; /** * A set of host IDs to include in a staticByID host group. Required if `type` is `staticByID`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group#host_ids HostGroup#host_ids} */ readonly hostIds?: string[]; /** * A set of hostnames to include in a static host group. Required if `type` is `static`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group#hostnames HostGroup#hostnames} */ readonly hostnames?: string[]; /** * The display name for the host group. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group#name HostGroup#name} */ readonly name: string; /** * The type of host group. Valid values: `dynamic`, `static`, `staticByID`. This value is case sensitive. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group#type HostGroup#type} */ readonly type: string; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group crowdstrike_host_group} */ export declare class HostGroup extends cdktf.TerraformResource { static readonly tfResourceType = "crowdstrike_host_group"; /** * Generates CDKTF code for importing a HostGroup 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 HostGroup to import * @param importFromId The id of the existing HostGroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the HostGroup 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/crowdstrike/crowdstrike/0.0.53/docs/resources/host_group crowdstrike_host_group} 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 HostGroupConfig */ constructor(scope: Construct, id: string, config: HostGroupConfig); private _assignmentRule?; get assignmentRule(): string; set assignmentRule(value: string); resetAssignmentRule(): void; get assignmentRuleInput(): string; private _description?; get description(): string; set description(value: string); get descriptionInput(): string; private _hostIds?; get hostIds(): string[]; set hostIds(value: string[]); resetHostIds(): void; get hostIdsInput(): string[]; private _hostnames?; get hostnames(): string[]; set hostnames(value: string[]); resetHostnames(): void; get hostnamesInput(): string[]; get id(): any; get lastUpdated(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }