import * as pulumi from "@pulumi/pulumi"; /** * ConfigMatchList data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the config match list by its ID. * const configMatchListDs = scm.getConfigMatchList({ * id: "e8592b6e-b135-4792-b722-fc583a8f7b8e", * }); * export const configMatchListDataSourceResults = configMatchListDs; * ``` */ export declare function getConfigMatchList(args: GetConfigMatchListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConfigMatchList. */ export interface GetConfigMatchListArgs { /** * 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 getConfigMatchList. */ export interface GetConfigMatchListResult { 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; } /** * ConfigMatchList data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the config match list by its ID. * const configMatchListDs = scm.getConfigMatchList({ * id: "e8592b6e-b135-4792-b722-fc583a8f7b8e", * }); * export const configMatchListDataSourceResults = configMatchListDs; * ``` */ export declare function getConfigMatchListOutput(args: GetConfigMatchListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConfigMatchList. */ export interface GetConfigMatchListOutputArgs { /** * 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=getConfigMatchList.d.ts.map