@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.17 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the TrustSec IP to SGT Mapping Group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.trustsec.getIpToSgtMappingGroup({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getIpToSgtMappingGroup(args?: GetIpToSgtMappingGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetIpToSgtMappingGroupResult>;
/**
* A collection of arguments for invoking getIpToSgtMappingGroup.
*/
export interface GetIpToSgtMappingGroupArgs {
/**
* The id of the object
*/
id?: string;
/**
* The name of the IP to SGT mapping Group
*/
name?: string;
}
/**
* A collection of values returned by getIpToSgtMappingGroup.
*/
export interface GetIpToSgtMappingGroupResult {
/**
* Mandatory unless `deployType` is `ALL`
*/
readonly deployTo: string;
/**
* Deploy Type
*/
readonly deployType: string;
/**
* Description
*/
readonly description: string;
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the IP to SGT mapping Group
*/
readonly name: string;
/**
* Trustsec Security Group ID
*/
readonly sgt: string;
}
/**
* This data source can read the TrustSec IP to SGT Mapping Group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.trustsec.getIpToSgtMappingGroup({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getIpToSgtMappingGroupOutput(args?: GetIpToSgtMappingGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIpToSgtMappingGroupResult>;
/**
* A collection of arguments for invoking getIpToSgtMappingGroup.
*/
export interface GetIpToSgtMappingGroupOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* The name of the IP to SGT mapping Group
*/
name?: pulumi.Input<string>;
}