import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a location group by ID or name. */ export declare function getLocationGroup(args?: GetLocationGroupArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetLocationGroupArgs { /** * The name of the location group to look up. */ name?: string; /** * The ID of the location group to look up. */ resourceId?: number; } export interface GetLocationGroupResult { /** * Comments or notes about the location group. */ readonly comments: string; /** * Whether the location group has been deleted. */ readonly deleted: boolean; /** * The type of the location group. */ readonly groupType: string; /** * The last modification time of the location group (epoch). */ readonly lastModTime: number; /** * List of location IDs that belong to this group. */ readonly locationIds: number[]; /** * The name of the location group. */ readonly name: string; /** * Whether the location group is predefined by Zscaler. */ readonly predefined: boolean; /** * The ID of the location group. */ readonly resourceId: number; } /** * Use this data source to look up a location group by ID or name. */ export declare function getLocationGroupOutput(args?: GetLocationGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetLocationGroupOutputArgs { /** * The name of the location group to look up. */ name?: pulumi.Input; /** * The ID of the location group to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getLocationGroup.d.ts.map