import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a firewall network service by ID or name. */ export declare function getFwNetworkService(args?: GetFwNetworkServiceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetFwNetworkServiceArgs { /** * The name of the network service to look up. */ name?: string; /** * The ID of the network service to look up. */ networkServiceId?: number; } export interface GetFwNetworkServiceResult { /** * The name of the network service. */ readonly name: string; /** * The ID of the network service. */ readonly networkServiceId: number; } /** * Use this data source to look up a firewall network service by ID or name. */ export declare function getFwNetworkServiceOutput(args?: GetFwNetworkServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetFwNetworkServiceOutputArgs { /** * The name of the network service to look up. */ name?: pulumi.Input; /** * The ID of the network service to look up. */ networkServiceId?: pulumi.Input; } //# sourceMappingURL=getFwNetworkService.d.ts.map