import * as pulumi from "@pulumi/pulumi"; /** * UseridMatchList data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the userid match list by its ID. * const useridMatchListDs = scm.getUseridMatchList({ * id: "dcf09e7b-3e46-45d8-953d-30d47a49137f", * }); * export const useridMatchListDataSourceResults = useridMatchListDs; * ``` */ export declare function getUseridMatchList(args: GetUseridMatchListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUseridMatchList. */ export interface GetUseridMatchListArgs { /** * 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 getUseridMatchList. */ export interface GetUseridMatchListResult { 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; } /** * UseridMatchList data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the userid match list by its ID. * const useridMatchListDs = scm.getUseridMatchList({ * id: "dcf09e7b-3e46-45d8-953d-30d47a49137f", * }); * export const useridMatchListDataSourceResults = useridMatchListDs; * ``` */ export declare function getUseridMatchListOutput(args: GetUseridMatchListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUseridMatchList. */ export interface GetUseridMatchListOutputArgs { /** * 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=getUseridMatchList.d.ts.map