import * as pulumi from "@pulumi/pulumi"; /** * Retrieves an existing TunnelDestGroup. */ export declare function getDestGroup(args: GetDestGroupArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDestGroupArgs { destGroupId: string; location: string; project?: string; } export interface GetDestGroupResult { /** * Unordered list. List of CIDRs that this group applies to. */ readonly cidrs: string[]; /** * Unordered list. List of FQDNs that this group applies to. */ readonly fqdns: string[]; /** * Immutable. Identifier for the TunnelDestGroup. Must be unique within the project and contain only lower case letters (a-z) and dashes (-). */ readonly name: string; } /** * Retrieves an existing TunnelDestGroup. */ export declare function getDestGroupOutput(args: GetDestGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetDestGroupOutputArgs { destGroupId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }