@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
55 lines (54 loc) • 1.73 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source provides the of list of supported Fingerprints.
*
* The Fingerprint information can be used within `matching` and `notMatching` attributes of the NAC Rule resource (`junipermist.org.Nacrule`)
*
* There are four different types of fingerprints available:* Family
* * Model
* * Mfg
* * OS Type
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const listOfFingerprints = junipermist.getConstFingerprints({});
* ```
*/
export declare function getConstFingerprints(opts?: pulumi.InvokeOptions): Promise<GetConstFingerprintsResult>;
/**
* A collection of values returned by getConstFingerprints.
*/
export interface GetConstFingerprintsResult {
readonly families: string[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly mfgs: string[];
readonly models: string[];
readonly os: string[];
}
/**
* This data source provides the of list of supported Fingerprints.
*
* The Fingerprint information can be used within `matching` and `notMatching` attributes of the NAC Rule resource (`junipermist.org.Nacrule`)
*
* There are four different types of fingerprints available:* Family
* * Model
* * Mfg
* * OS Type
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const listOfFingerprints = junipermist.getConstFingerprints({});
* ```
*/
export declare function getConstFingerprintsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConstFingerprintsResult>;