import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the TrustSec Egress Matrix Cell. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.trustsec.getEgressMatrixCell({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getEgressMatrixCell(args: GetEgressMatrixCellArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEgressMatrixCell. */ export interface GetEgressMatrixCellArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getEgressMatrixCell. */ export interface GetEgressMatrixCellResult { /** * Can be used only if sgacls not specified. */ readonly defaultRule: string; /** * Description */ readonly description: string; /** * Destination Trustsec Security Group ID */ readonly destinationSgtId: string; /** * The id of the object */ readonly id: string; /** * Matrix Cell Status */ readonly matrixCellStatus: string; /** * Matrix ID. Default value is Production Matrix Id, when no value is provided during creation. (works with ISE 3.4 p2 and above) */ readonly matrixId: string; /** * List of TrustSec Security Groups ACLs */ readonly sgacls: string[]; /** * Source Trustsec Security Group ID */ readonly sourceSgtId: string; } /** * This data source can read the TrustSec Egress Matrix Cell. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.trustsec.getEgressMatrixCell({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getEgressMatrixCellOutput(args: GetEgressMatrixCellOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEgressMatrixCell. */ export interface GetEgressMatrixCellOutputArgs { /** * The id of the object */ id: pulumi.Input; } //# sourceMappingURL=getEgressMatrixCell.d.ts.map