@pulumi/juniper-mist
Version:
A Pulumi package for creating and managing Juniper Mist resources.
68 lines (67 loc) • 2.52 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* This data source provides the list of WAN Assurance Services (Applications).
*
* A Service is used to define a Custom Application that can be used in the `servicePolicies`. These Services can be referenced by their name in
* * the Service Policies (`mist_org_servicepolicy.services`)
* * the Gateway configuration (`mist_device_gateway.service_policies.services`)
* * the Gateway Templates (`mist_org_gatewaytemplate.service_policies.services`)
* * the HUB Profiles (`mist_org_deviceprofile_gateway.service_policies.services`)
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const services = junipermist.org.getServices({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
export declare function getServices(args: GetServicesArgs, opts?: pulumi.InvokeOptions): Promise<GetServicesResult>;
/**
* A collection of arguments for invoking getServices.
*/
export interface GetServicesArgs {
orgId: string;
}
/**
* A collection of values returned by getServices.
*/
export interface GetServicesResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly orgId: string;
readonly orgServices: outputs.org.GetServicesOrgService[];
}
/**
* This data source provides the list of WAN Assurance Services (Applications).
*
* A Service is used to define a Custom Application that can be used in the `servicePolicies`. These Services can be referenced by their name in
* * the Service Policies (`mist_org_servicepolicy.services`)
* * the Gateway configuration (`mist_device_gateway.service_policies.services`)
* * the Gateway Templates (`mist_org_gatewaytemplate.service_policies.services`)
* * the HUB Profiles (`mist_org_deviceprofile_gateway.service_policies.services`)
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as junipermist from "@pulumi/juniper-mist";
*
* const services = junipermist.org.getServices({
* orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
* });
* ```
*/
export declare function getServicesOutput(args: GetServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServicesResult>;
/**
* A collection of arguments for invoking getServices.
*/
export interface GetServicesOutputArgs {
orgId: pulumi.Input<string>;
}