UNPKG

@pulumi/ise

Version:

A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1

75 lines (74 loc) 2.02 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the TrustSec Egress Matrix Cell Default. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.trustsec.getEgressMatrixCellDefault({ * id: "92c1a900-8c01-11e6-996c-525400b48521", * }); * ``` */ export declare function getEgressMatrixCellDefault(args: GetEgressMatrixCellDefaultArgs, opts?: pulumi.InvokeOptions): Promise<GetEgressMatrixCellDefaultResult>; /** * A collection of arguments for invoking getEgressMatrixCellDefault. */ export interface GetEgressMatrixCellDefaultArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getEgressMatrixCellDefault. */ export interface GetEgressMatrixCellDefaultResult { /** * Can be used only if sgacls not specified. Final Catch All Rule */ readonly defaultRule: string; /** * Description */ readonly description: string; /** * The id of the object */ readonly id: string; /** * Matrix Cell Status */ readonly matrixCellStatus: string; /** * List of TrustSec Security Groups ACLs */ readonly sgacls: string[]; } /** * This data source can read the TrustSec Egress Matrix Cell Default. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.trustsec.getEgressMatrixCellDefault({ * id: "92c1a900-8c01-11e6-996c-525400b48521", * }); * ``` */ export declare function getEgressMatrixCellDefaultOutput(args: GetEgressMatrixCellDefaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEgressMatrixCellDefaultResult>; /** * A collection of arguments for invoking getEgressMatrixCellDefault. */ export interface GetEgressMatrixCellDefaultOutputArgs { /** * The id of the object */ id: pulumi.Input<string>; }