@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
87 lines (86 loc) • 2.03 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the TrustSec Security Group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.trustsec.getSecurityGroup({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getSecurityGroup(args?: GetSecurityGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetSecurityGroupResult>;
/**
* A collection of arguments for invoking getSecurityGroup.
*/
export interface GetSecurityGroupArgs {
/**
* The id of the object
*/
id?: string;
/**
* The name of the security group
*/
name?: string;
}
/**
* A collection of values returned by getSecurityGroup.
*/
export interface GetSecurityGroupResult {
/**
* Description
*/
readonly description: string;
/**
* The id of the object
*/
readonly id: string;
/**
* Read-only
*/
readonly isReadOnly: boolean;
/**
* The name of the security group
*/
readonly name: string;
/**
* Propagate to APIC (ACI)
*/
readonly propogateToApic: boolean;
/**
* `-1` to auto-generate
*/
readonly value: number;
}
/**
* This data source can read the TrustSec Security Group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.trustsec.getSecurityGroup({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getSecurityGroupOutput(args?: GetSecurityGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecurityGroupResult>;
/**
* A collection of arguments for invoking getSecurityGroup.
*/
export interface GetSecurityGroupOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* The name of the security group
*/
name?: pulumi.Input<string>;
}