import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SensorUpdatePolicyPrecedenceConfig extends cdktf.TerraformMetaArguments { /** * The enforcement type for this resource. `strict` requires all non-default sensor update policy ids for platform to be provided. `dynamic` will ensure the provided policies have precedence over others. When using dynamic, policy ids not included in `ids` will retain their current ordering after the managed ids. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/sensor_update_policy_precedence#enforcement SensorUpdatePolicyPrecedence#enforcement} */ readonly enforcement: string; /** * The policy ids in order. The first ID specified will have the highest precedence and the last ID specified will have the lowest. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/sensor_update_policy_precedence#ids SensorUpdatePolicyPrecedence#ids} */ readonly ids: string[]; /** * That platform of the sensor update policies. (Windows, Mac, Linux) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/sensor_update_policy_precedence#platform_name SensorUpdatePolicyPrecedence#platform_name} */ readonly platformName: string; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/sensor_update_policy_precedence crowdstrike_sensor_update_policy_precedence} */ export declare class SensorUpdatePolicyPrecedence extends cdktf.TerraformResource { static readonly tfResourceType = "crowdstrike_sensor_update_policy_precedence"; /** * Generates CDKTF code for importing a SensorUpdatePolicyPrecedence 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 SensorUpdatePolicyPrecedence to import * @param importFromId The id of the existing SensorUpdatePolicyPrecedence that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/sensor_update_policy_precedence#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SensorUpdatePolicyPrecedence 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/sensor_update_policy_precedence crowdstrike_sensor_update_policy_precedence} 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 SensorUpdatePolicyPrecedenceConfig */ constructor(scope: Construct, id: string, config: SensorUpdatePolicyPrecedenceConfig); private _enforcement?; get enforcement(): string; set enforcement(value: string); get enforcementInput(): string; private _ids?; get ids(): string[]; set ids(value: string[]); get idsInput(): string[]; get lastUpdated(): any; private _platformName?; get platformName(): string; set platformName(value: string); get platformNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }