@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
67 lines (66 loc) • 1.76 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Endpoint Custom Attribute.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.identitymanagement.getEndpointCustomAttribute({
* id: "isMobile",
* });
* ```
*/
export declare function getEndpointCustomAttribute(args: GetEndpointCustomAttributeArgs, opts?: pulumi.InvokeOptions): Promise<GetEndpointCustomAttributeResult>;
/**
* A collection of arguments for invoking getEndpointCustomAttribute.
*/
export interface GetEndpointCustomAttributeArgs {
/**
* The id of the object
*/
id: string;
}
/**
* A collection of values returned by getEndpointCustomAttribute.
*/
export interface GetEndpointCustomAttributeResult {
/**
* The name of the attribute
*/
readonly attributeName: string;
/**
* Attribute type
*/
readonly attributeType: string;
/**
* The id of the object
*/
readonly id: string;
}
/**
* This data source can read the Endpoint Custom Attribute.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.identitymanagement.getEndpointCustomAttribute({
* id: "isMobile",
* });
* ```
*/
export declare function getEndpointCustomAttributeOutput(args: GetEndpointCustomAttributeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEndpointCustomAttributeResult>;
/**
* A collection of arguments for invoking getEndpointCustomAttribute.
*/
export interface GetEndpointCustomAttributeOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}