@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
83 lines (82 loc) • 1.97 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Downloadable ACL.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.networkaccess.getDownloadableAcl({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getDownloadableAcl(args?: GetDownloadableAclArgs, opts?: pulumi.InvokeOptions): Promise<GetDownloadableAclResult>;
/**
* A collection of arguments for invoking getDownloadableAcl.
*/
export interface GetDownloadableAclArgs {
/**
* The id of the object
*/
id?: string;
/**
* The name of the downloadable ACL
*/
name?: string;
}
/**
* A collection of values returned by getDownloadableAcl.
*/
export interface GetDownloadableAclResult {
/**
* The DACL content
*/
readonly dacl: string;
/**
* The type of ACL
*/
readonly daclType: string;
/**
* Description
*/
readonly description: string;
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the downloadable ACL
*/
readonly name: string;
}
/**
* This data source can read the Downloadable ACL.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.networkaccess.getDownloadableAcl({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getDownloadableAclOutput(args?: GetDownloadableAclOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDownloadableAclResult>;
/**
* A collection of arguments for invoking getDownloadableAcl.
*/
export interface GetDownloadableAclOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* The name of the downloadable ACL
*/
name?: pulumi.Input<string>;
}