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; /** * 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; /** * A collection of arguments for invoking getDeviceGroup. */ export interface GetDeviceGroupOutputArgs { /** * The id of the object */ id?: pulumi.Input; /** * The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`. */ name?: pulumi.Input; } //# sourceMappingURL=getDeviceGroup.d.ts.map