import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Application data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up a single application object by its ID. * // The ID used here is from the API response log you provided. * const scmApplicationDs = scm.getApplication({ * id: "bb16f631-4839-475e-8628-70585319ca75", * }); * export const applicationDsResult = scmApplicationDs; * ``` */ export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApplication. */ export interface GetApplicationArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the application */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getApplication. */ export interface GetApplicationResult { readonly ableToTransferFile: boolean; readonly algDisableCapability: string; readonly category: string; readonly consumeBigBandwidth: boolean; readonly dataIdent: boolean; readonly default: outputs.GetApplicationDefault; readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly evasiveBehavior: boolean; readonly fileTypeIdent: boolean; readonly folder: string; readonly hasKnownVulnerability: boolean; /** * The UUID of the application */ readonly id: string; readonly name: string; readonly noAppidCaching: boolean; readonly parentApp: string; readonly pervasiveUse: boolean; readonly proneToMisuse: boolean; readonly risk: string; readonly signatures: outputs.GetApplicationSignature[]; readonly snippet: string; readonly subcategory: string; readonly tcpHalfClosedTimeout: number; readonly tcpTimeWaitTimeout: number; readonly tcpTimeout: number; readonly technology: string; readonly tfid: string; readonly timeout: number; readonly tunnelApplications: boolean; readonly tunnelOtherApplication: boolean; readonly udpTimeout: number; readonly usedByMalware: boolean; readonly virusIdent: boolean; } /** * Application data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up a single application object by its ID. * // The ID used here is from the API response log you provided. * const scmApplicationDs = scm.getApplication({ * id: "bb16f631-4839-475e-8628-70585319ca75", * }); * export const applicationDsResult = scmApplicationDs; * ``` */ export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApplication. */ export interface GetApplicationOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the application */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getApplication.d.ts.map