import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Custom Application . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCustomApplication({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCustomApplication(args: GetCustomApplicationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomApplication. */ export interface GetCustomApplicationArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getCustomApplication. */ export interface GetCustomApplicationResult { /** * Application Name */ readonly appName: string; /** * Application Family */ readonly applicationFamily: string; /** * Application Group */ readonly applicationGroup: string; /** * Business Relevance */ readonly businessRelevance: string; /** * The id of the object */ readonly id: string; /** * L3/L4 Attributes */ readonly l3l4s: outputs.GetCustomApplicationL3l4[]; /** * Server Names (Fully Qualified Domain names or Regex starting with `*` but not ending with `*` or both separated by commas.) */ readonly serverNames: string[]; /** * Traffic Class */ readonly trafficClass: string; /** * The version of the object */ readonly version: number; } /** * This data source can read the Custom Application . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCustomApplication({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCustomApplicationOutput(args: GetCustomApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomApplication. */ export interface GetCustomApplicationOutputArgs { /** * The id of the object */ id: pulumi.Input; } //# sourceMappingURL=getCustomApplication.d.ts.map