@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
43 lines (42 loc) • 1.45 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source provides the of ConstTrafficTypes.
*
* The Traffic Type values can be used to define the `trafficType` attribute in the `junipermist.org.Service` resource.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const listOfTrafficTypes = junipermist.getConstTrafficTypes({});
* ```
*/
export declare function getConstTrafficTypes(opts?: pulumi.InvokeOptions): Promise<GetConstTrafficTypesResult>;
/**
* A collection of values returned by getConstTrafficTypes.
*/
export interface GetConstTrafficTypesResult {
readonly constTrafficTypes: outputs.GetConstTrafficTypesConstTrafficType[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
}
/**
* This data source provides the of ConstTrafficTypes.
*
* The Traffic Type values can be used to define the `trafficType` attribute in the `junipermist.org.Service` resource.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const listOfTrafficTypes = junipermist.getConstTrafficTypes({});
* ```
*/
export declare function getConstTrafficTypesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConstTrafficTypesResult>;