@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
79 lines (78 loc) • 2.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Network Device Group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.network.getDeviceGroup({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getDeviceGroup(args?: GetDeviceGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetDeviceGroupResult>;
/**
* A collection of arguments for invoking getDeviceGroup.
*/
export interface GetDeviceGroupArgs {
/**
* The id of the object
*/
id?: string;
/**
* The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
*/
name?: string;
}
/**
* A collection of values returned by getDeviceGroup.
*/
export interface GetDeviceGroupResult {
/**
* Description
*/
readonly description: string;
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
*/
readonly name: string;
/**
* The name of the root device group.
*/
readonly rootGroup: string;
}
/**
* This data source can read the Network Device Group.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.network.getDeviceGroup({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getDeviceGroupOutput(args?: GetDeviceGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDeviceGroupResult>;
/**
* A collection of arguments for invoking getDeviceGroup.
*/
export interface GetDeviceGroupOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
*/
name?: pulumi.Input<string>;
}