import * as pulumi from "@pulumi/pulumi"; /** * GlobalprotectMatchList data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the globalprotect match list by its ID. * const globalprotectMatchListDs = scm.getGlobalprotectMatchList({ * id: "89c5fc2d-dba8-4560-b853-4eb1ecd36025", * }); * export const globalprotectMatchListDataSourceResults = globalprotectMatchListDs; * ``` */ export declare function getGlobalprotectMatchList(args: GetGlobalprotectMatchListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGlobalprotectMatchList. */ export interface GetGlobalprotectMatchListArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getGlobalprotectMatchList. */ export interface GetGlobalprotectMatchListResult { readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly filter: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly name: string; readonly quarantine: boolean; readonly sendEmails: string[]; readonly sendHttps: string[]; readonly sendSnmptraps: string[]; readonly sendSyslogs: string[]; readonly sendToPanorama: boolean; readonly snippet: string; readonly tfid: string; } /** * GlobalprotectMatchList data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the globalprotect match list by its ID. * const globalprotectMatchListDs = scm.getGlobalprotectMatchList({ * id: "89c5fc2d-dba8-4560-b853-4eb1ecd36025", * }); * export const globalprotectMatchListDataSourceResults = globalprotectMatchListDs; * ``` */ export declare function getGlobalprotectMatchListOutput(args: GetGlobalprotectMatchListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGlobalprotectMatchList. */ export interface GetGlobalprotectMatchListOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getGlobalprotectMatchList.d.ts.map