import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ContentUpdatePolicyPrecedenceConfig extends cdktf.TerraformMetaArguments { /** * The enforcement type for this resource. `strict` requires all non-default content update policy ids 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/content_update_policy_precedence#enforcement ContentUpdatePolicyPrecedence#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/content_update_policy_precedence#ids ContentUpdatePolicyPrecedence#ids} */ readonly ids: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/content_update_policy_precedence crowdstrike_content_update_policy_precedence} */ export declare class ContentUpdatePolicyPrecedence extends cdktf.TerraformResource { static readonly tfResourceType = "crowdstrike_content_update_policy_precedence"; /** * Generates CDKTF code for importing a ContentUpdatePolicyPrecedence 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 ContentUpdatePolicyPrecedence to import * @param importFromId The id of the existing ContentUpdatePolicyPrecedence that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/content_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 ContentUpdatePolicyPrecedence 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/content_update_policy_precedence crowdstrike_content_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 ContentUpdatePolicyPrecedenceConfig */ constructor(scope: Construct, id: string, config: ContentUpdatePolicyPrecedenceConfig); 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; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }