@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
99 lines (98 loc) • 2.46 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the TrustSec IP to SGT Mapping.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.trustsec.getIpToSgtMapping({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getIpToSgtMapping(args?: GetIpToSgtMappingArgs, opts?: pulumi.InvokeOptions): Promise<GetIpToSgtMappingResult>;
/**
* A collection of arguments for invoking getIpToSgtMapping.
*/
export interface GetIpToSgtMappingArgs {
/**
* The id of the object
*/
id?: string;
/**
* The name of the IP to SGT mapping
*/
name?: string;
}
/**
* A collection of values returned by getIpToSgtMapping.
*/
export interface GetIpToSgtMappingResult {
/**
* Mandatory unless `mappingGroup` is set or unless `deployType` is `ALL`
*/
readonly deployTo: string;
/**
* Deploy Type
*/
readonly deployType: string;
/**
* Description
*/
readonly description: string;
/**
* Mandatory if `hostName` is empty
*/
readonly hostIp: string;
/**
* Mandatory if `hostIp` is empty
*/
readonly hostName: string;
/**
* The id of the object
*/
readonly id: string;
/**
* IP to SGT Mapping Group ID. Mandatory unless `sgt` and `deployTo` and `deployType` are set
*/
readonly mappingGroup: string;
/**
* The name of the IP to SGT mapping
*/
readonly name: string;
/**
* Trustsec Security Group ID. Mandatory unless `mappingGroup` is set
*/
readonly sgt: string;
}
/**
* This data source can read the TrustSec IP to SGT Mapping.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.trustsec.getIpToSgtMapping({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getIpToSgtMappingOutput(args?: GetIpToSgtMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIpToSgtMappingResult>;
/**
* A collection of arguments for invoking getIpToSgtMapping.
*/
export interface GetIpToSgtMappingOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* The name of the IP to SGT mapping
*/
name?: pulumi.Input<string>;
}