import * as pulumi from "@pulumi/pulumi"; /** * SystemMatchList data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the system match list by its ID. * const systemMatchListDs = scm.getSystemMatchList({ * id: "dc61ea2f-e7aa-4e86-a742-aa8b2aaf4bf2", * }); * export const systemMatchListDataSourceResults = systemMatchListDs; * ``` */ export declare function getSystemMatchList(args: GetSystemMatchListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSystemMatchList. */ export interface GetSystemMatchListArgs { /** * 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 getSystemMatchList. */ export interface GetSystemMatchListResult { 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 sendEmails: string[]; readonly sendHttps: string[]; readonly sendSnmptraps: string[]; readonly sendSyslogs: string[]; readonly sendToPanorama: boolean; readonly snippet: string; readonly tfid: string; } /** * SystemMatchList data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the system match list by its ID. * const systemMatchListDs = scm.getSystemMatchList({ * id: "dc61ea2f-e7aa-4e86-a742-aa8b2aaf4bf2", * }); * export const systemMatchListDataSourceResults = systemMatchListDs; * ``` */ export declare function getSystemMatchListOutput(args: GetSystemMatchListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSystemMatchList. */ export interface GetSystemMatchListOutputArgs { /** * 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=getSystemMatchList.d.ts.map