@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
83 lines (82 loc) • 2.07 kB
TypeScript
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<GetEgressMatrixCellResult>;
/**
* 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;
/**
* 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<GetEgressMatrixCellResult>;
/**
* A collection of arguments for invoking getEgressMatrixCell.
*/
export interface GetEgressMatrixCellOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}