@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
64 lines (63 loc) • 1.67 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* This data source can read the License Tier State.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.system.getLicenseTierState({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getLicenseTierState(args: GetLicenseTierStateArgs, opts?: pulumi.InvokeOptions): Promise<GetLicenseTierStateResult>;
/**
* A collection of arguments for invoking getLicenseTierState.
*/
export interface GetLicenseTierStateArgs {
/**
* The id of the object
*/
id: string;
}
/**
* A collection of values returned by getLicenseTierState.
*/
export interface GetLicenseTierStateResult {
/**
* The id of the object
*/
readonly id: string;
/**
* List of licenses
*/
readonly licenses: outputs.system.GetLicenseTierStateLicense[];
}
/**
* This data source can read the License Tier State.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.system.getLicenseTierState({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getLicenseTierStateOutput(args: GetLicenseTierStateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLicenseTierStateResult>;
/**
* A collection of arguments for invoking getLicenseTierState.
*/
export interface GetLicenseTierStateOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}