import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataCrowdstrikeFilevantagePoliciesConfig extends cdktf.TerraformMetaArguments { /** * Filter policies by the user who created them. All provided filter attributes must match for a policy to be returned (omitted attributes are ignored). Supports wildcard matching with '*' where '*' matches any sequence of characters until the end of the string or until the next literal character in the pattern is found. Multiple wildcards can be used in a single pattern. Matching is case insensitive. Cannot be used together with 'ids'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#created_by DataCrowdstrikeFilevantagePolicies#created_by} */ readonly createdBy?: string; /** * Filter policies by description. All provided filter attributes must match for a policy to be returned (omitted attributes are ignored). Supports wildcard matching with '*' where '*' matches any sequence of characters until the end of the string or until the next literal character in the pattern is found. Multiple wildcards can be used in a single pattern. Matching is case insensitive. Cannot be used together with 'ids'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#description DataCrowdstrikeFilevantagePolicies#description} */ readonly description?: string; /** * Filter policies by enabled status. All provided filter attributes must match for a policy to be returned (omitted attributes are ignored). Cannot be used together with 'ids'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#enabled DataCrowdstrikeFilevantagePolicies#enabled} */ readonly enabled?: boolean | cdktf.IResolvable; /** * List of FileVantage policy IDs to retrieve. Cannot be used together with 'platform_names' or other filter attributes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#ids DataCrowdstrikeFilevantagePolicies#ids} */ readonly ids?: string[]; /** * Filter policies by the user who last modified them. All provided filter attributes must match for a policy to be returned (omitted attributes are ignored). Supports wildcard matching with '*' where '*' matches any sequence of characters until the end of the string or until the next literal character in the pattern is found. Multiple wildcards can be used in a single pattern. Matching is case insensitive. Cannot be used together with 'ids'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#modified_by DataCrowdstrikeFilevantagePolicies#modified_by} */ readonly modifiedBy?: string; /** * Filter policies by name. All provided filter attributes must match for a policy to be returned (omitted attributes are ignored). Supports wildcard matching with '*' where '*' matches any sequence of characters until the end of the string or until the next literal character in the pattern is found. Multiple wildcards can be used in a single pattern. Matching is case insensitive. Cannot be used together with 'ids'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#name DataCrowdstrikeFilevantagePolicies#name} */ readonly name?: string; /** * Filter policies by platform names. Valid values: Windows, Linux, Mac. Defaults to all. Cannot be used together with 'ids'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#platform_names DataCrowdstrikeFilevantagePolicies#platform_names} */ readonly platformNames?: string[]; /** * Sort order for the results. Can be used with 'platform_names'. Valid values: 'precedence', 'created_timestamp', 'modified_timestamp', optionally followed by '.asc' or '.desc' (e.g., 'precedence.desc'). By default, '.asc' is used if no direction is specified. Cannot be used together with 'ids'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#sort DataCrowdstrikeFilevantagePolicies#sort} */ readonly sort?: string; } export interface DataCrowdstrikeFilevantagePoliciesPolicies { } export declare function dataCrowdstrikeFilevantagePoliciesPoliciesToTerraform(struct?: DataCrowdstrikeFilevantagePoliciesPolicies): any; export declare function dataCrowdstrikeFilevantagePoliciesPoliciesToHclTerraform(struct?: DataCrowdstrikeFilevantagePoliciesPolicies): any; export declare class DataCrowdstrikeFilevantagePoliciesPoliciesOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataCrowdstrikeFilevantagePoliciesPolicies | undefined; set internalValue(value: DataCrowdstrikeFilevantagePoliciesPolicies | undefined); get createdBy(): any; get createdTimestamp(): any; get description(): any; get enabled(): any; get hostGroups(): any; get id(): any; get modifiedBy(): any; get modifiedTimestamp(): any; get name(): any; get platformName(): any; get precedence(): any; get ruleGroups(): any; } export declare class DataCrowdstrikeFilevantagePoliciesPoliciesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataCrowdstrikeFilevantagePoliciesPoliciesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies crowdstrike_filevantage_policies} */ export declare class DataCrowdstrikeFilevantagePolicies extends cdktf.TerraformDataSource { static readonly tfResourceType = "crowdstrike_filevantage_policies"; /** * Generates CDKTF code for importing a DataCrowdstrikeFilevantagePolicies 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 DataCrowdstrikeFilevantagePolicies to import * @param importFromId The id of the existing DataCrowdstrikeFilevantagePolicies that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/data-sources/filevantage_policies#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataCrowdstrikeFilevantagePolicies 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/data-sources/filevantage_policies crowdstrike_filevantage_policies} Data Source * * @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 DataCrowdstrikeFilevantagePoliciesConfig = {} */ constructor(scope: Construct, id: string, config?: DataCrowdstrikeFilevantagePoliciesConfig); private _createdBy?; get createdBy(): string; set createdBy(value: string); resetCreatedBy(): void; get createdByInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _enabled?; get enabled(): boolean | cdktf.IResolvable; set enabled(value: boolean | cdktf.IResolvable); resetEnabled(): void; get enabledInput(): any; private _ids?; get ids(): string[]; set ids(value: string[]); resetIds(): void; get idsInput(): string[]; private _modifiedBy?; get modifiedBy(): string; set modifiedBy(value: string); resetModifiedBy(): void; get modifiedByInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _platformNames?; get platformNames(): string[]; set platformNames(value: string[]); resetPlatformNames(): void; get platformNamesInput(): string[]; private _policies; get policies(): DataCrowdstrikeFilevantagePoliciesPoliciesList; private _sort?; get sort(): string; set sort(value: string); resetSort(): void; get sortInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }