import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataZiaLocationGroupsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#id DataZiaLocationGroups#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#name DataZiaLocationGroups#name} */ readonly name?: string; /** * dynamic_location_group_criteria block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#dynamic_location_group_criteria DataZiaLocationGroups#dynamic_location_group_criteria} */ readonly dynamicLocationGroupCriteria?: DataZiaLocationGroupsDynamicLocationGroupCriteria[] | cdktf.IResolvable; } export interface DataZiaLocationGroupsLastModUser { } export declare function dataZiaLocationGroupsLastModUserToTerraform(struct?: DataZiaLocationGroupsLastModUser): any; export declare function dataZiaLocationGroupsLastModUserToHclTerraform(struct?: DataZiaLocationGroupsLastModUser): any; export declare class DataZiaLocationGroupsLastModUserOutputReference 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(): DataZiaLocationGroupsLastModUser | undefined; set internalValue(value: DataZiaLocationGroupsLastModUser | undefined); private _extensions; get extensions(): any; get id(): any; get name(): any; } export declare class DataZiaLocationGroupsLastModUserList 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): DataZiaLocationGroupsLastModUserOutputReference; } export interface DataZiaLocationGroupsLocations { } export declare function dataZiaLocationGroupsLocationsToTerraform(struct?: DataZiaLocationGroupsLocations): any; export declare function dataZiaLocationGroupsLocationsToHclTerraform(struct?: DataZiaLocationGroupsLocations): any; export declare class DataZiaLocationGroupsLocationsOutputReference 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(): DataZiaLocationGroupsLocations | undefined; set internalValue(value: DataZiaLocationGroupsLocations | undefined); private _extensions; get extensions(): any; get id(): any; get name(): any; } export declare class DataZiaLocationGroupsLocationsList 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): DataZiaLocationGroupsLocationsOutputReference; } export interface DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedBy { } export declare function dataZiaLocationGroupsDynamicLocationGroupCriteriaManagedByToTerraform(struct?: DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedBy): any; export declare function dataZiaLocationGroupsDynamicLocationGroupCriteriaManagedByToHclTerraform(struct?: DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedBy): any; export declare class DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedByOutputReference 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(): DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedBy | undefined; set internalValue(value: DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedBy | undefined); private _extensions; get extensions(): any; get id(): any; get name(): any; } export declare class DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedByList 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): DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedByOutputReference; } export interface DataZiaLocationGroupsDynamicLocationGroupCriteriaCity { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#match_string DataZiaLocationGroups#match_string} */ readonly matchString?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#match_type DataZiaLocationGroups#match_type} */ readonly matchType?: string; } export declare function dataZiaLocationGroupsDynamicLocationGroupCriteriaCityToTerraform(struct?: DataZiaLocationGroupsDynamicLocationGroupCriteriaCity | cdktf.IResolvable): any; export declare function dataZiaLocationGroupsDynamicLocationGroupCriteriaCityToHclTerraform(struct?: DataZiaLocationGroupsDynamicLocationGroupCriteriaCity | cdktf.IResolvable): any; export declare class DataZiaLocationGroupsDynamicLocationGroupCriteriaCityOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): DataZiaLocationGroupsDynamicLocationGroupCriteriaCity | cdktf.IResolvable | undefined; set internalValue(value: DataZiaLocationGroupsDynamicLocationGroupCriteriaCity | cdktf.IResolvable | undefined); private _matchString?; get matchString(): string; set matchString(value: string); resetMatchString(): void; get matchStringInput(): string; private _matchType?; get matchType(): string; set matchType(value: string); resetMatchType(): void; get matchTypeInput(): string; } export declare class DataZiaLocationGroupsDynamicLocationGroupCriteriaCityList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataZiaLocationGroupsDynamicLocationGroupCriteriaCity[] | cdktf.IResolvable; /** * @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): DataZiaLocationGroupsDynamicLocationGroupCriteriaCityOutputReference; } export interface DataZiaLocationGroupsDynamicLocationGroupCriteriaName { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#match_string DataZiaLocationGroups#match_string} */ readonly matchString?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#match_type DataZiaLocationGroups#match_type} */ readonly matchType?: string; } export declare function dataZiaLocationGroupsDynamicLocationGroupCriteriaNameToTerraform(struct?: DataZiaLocationGroupsDynamicLocationGroupCriteriaName | cdktf.IResolvable): any; export declare function dataZiaLocationGroupsDynamicLocationGroupCriteriaNameToHclTerraform(struct?: DataZiaLocationGroupsDynamicLocationGroupCriteriaName | cdktf.IResolvable): any; export declare class DataZiaLocationGroupsDynamicLocationGroupCriteriaNameOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): DataZiaLocationGroupsDynamicLocationGroupCriteriaName | cdktf.IResolvable | undefined; set internalValue(value: DataZiaLocationGroupsDynamicLocationGroupCriteriaName | cdktf.IResolvable | undefined); private _matchString?; get matchString(): string; set matchString(value: string); resetMatchString(): void; get matchStringInput(): string; private _matchType?; get matchType(): string; set matchType(value: string); resetMatchType(): void; get matchTypeInput(): string; } export declare class DataZiaLocationGroupsDynamicLocationGroupCriteriaNameList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataZiaLocationGroupsDynamicLocationGroupCriteriaName[] | cdktf.IResolvable; /** * @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): DataZiaLocationGroupsDynamicLocationGroupCriteriaNameOutputReference; } export interface DataZiaLocationGroupsDynamicLocationGroupCriteria { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#countries DataZiaLocationGroups#countries} */ readonly countries?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#profiles DataZiaLocationGroups#profiles} */ readonly profiles?: string[]; /** * city block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#city DataZiaLocationGroups#city} */ readonly city?: DataZiaLocationGroupsDynamicLocationGroupCriteriaCity[] | cdktf.IResolvable; /** * name block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#name DataZiaLocationGroups#name} */ readonly name?: DataZiaLocationGroupsDynamicLocationGroupCriteriaName[] | cdktf.IResolvable; } export declare function dataZiaLocationGroupsDynamicLocationGroupCriteriaToTerraform(struct?: DataZiaLocationGroupsDynamicLocationGroupCriteria | cdktf.IResolvable): any; export declare function dataZiaLocationGroupsDynamicLocationGroupCriteriaToHclTerraform(struct?: DataZiaLocationGroupsDynamicLocationGroupCriteria | cdktf.IResolvable): any; export declare class DataZiaLocationGroupsDynamicLocationGroupCriteriaOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): DataZiaLocationGroupsDynamicLocationGroupCriteria | cdktf.IResolvable | undefined; set internalValue(value: DataZiaLocationGroupsDynamicLocationGroupCriteria | cdktf.IResolvable | undefined); private _countries?; get countries(): string[]; set countries(value: string[]); resetCountries(): void; get countriesInput(): string[]; get enableBandwidthControl(): any; get enableCaution(): any; get enableXffForwarding(): any; get enforceAup(): any; get enforceAuthentication(): any; get enforceFirewallControl(): any; private _managedBy; get managedBy(): DataZiaLocationGroupsDynamicLocationGroupCriteriaManagedByList; private _profiles?; get profiles(): string[]; set profiles(value: string[]); resetProfiles(): void; get profilesInput(): string[]; private _city; get city(): DataZiaLocationGroupsDynamicLocationGroupCriteriaCityList; putCity(value: DataZiaLocationGroupsDynamicLocationGroupCriteriaCity[] | cdktf.IResolvable): void; resetCity(): void; get cityInput(): any; private _name; get name(): DataZiaLocationGroupsDynamicLocationGroupCriteriaNameList; putName(value: DataZiaLocationGroupsDynamicLocationGroupCriteriaName[] | cdktf.IResolvable): void; resetName(): void; get nameInput(): any; } export declare class DataZiaLocationGroupsDynamicLocationGroupCriteriaList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataZiaLocationGroupsDynamicLocationGroupCriteria[] | cdktf.IResolvable; /** * @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): DataZiaLocationGroupsDynamicLocationGroupCriteriaOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups zia_location_groups} */ export declare class DataZiaLocationGroups extends cdktf.TerraformDataSource { static readonly tfResourceType = "zia_location_groups"; /** * Generates CDKTF code for importing a DataZiaLocationGroups 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 DataZiaLocationGroups to import * @param importFromId The id of the existing DataZiaLocationGroups that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/location_groups#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataZiaLocationGroups 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/zscaler/zia/4.6.5/docs/data-sources/location_groups zia_location_groups} 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 DataZiaLocationGroupsConfig = {} */ constructor(scope: Construct, id: string, config?: DataZiaLocationGroupsConfig); get comments(): any; get deleted(): any; get groupType(): any; private _id?; get id(): number; set id(value: number); resetId(): void; get idInput(): number; get lastModTime(): any; private _lastModUser; get lastModUser(): DataZiaLocationGroupsLastModUserList; private _locations; get locations(): DataZiaLocationGroupsLocationsList; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; get predefined(): any; private _dynamicLocationGroupCriteria; get dynamicLocationGroupCriteria(): DataZiaLocationGroupsDynamicLocationGroupCriteriaList; putDynamicLocationGroupCriteria(value: DataZiaLocationGroupsDynamicLocationGroupCriteria[] | cdktf.IResolvable): void; resetDynamicLocationGroupCriteria(): void; get dynamicLocationGroupCriteriaInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }