@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
58 lines (57 loc) • 1.56 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* SdwanPathQualityProfile data source
*/
export declare function getSdwanPathQualityProfile(args: GetSdwanPathQualityProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetSdwanPathQualityProfileResult>;
/**
* A collection of arguments for invoking getSdwanPathQualityProfile.
*/
export interface GetSdwanPathQualityProfileArgs {
/**
* UUID of the resource
*/
id: string;
/**
* Profile name
*/
name?: string;
}
/**
* A collection of values returned by getSdwanPathQualityProfile.
*/
export interface GetSdwanPathQualityProfileResult {
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly folder: string;
/**
* UUID of the resource
*/
readonly id: string;
readonly metric: outputs.GetSdwanPathQualityProfileMetric;
/**
* Profile name
*/
readonly name: string;
readonly snippet: string;
readonly tfid: string;
}
/**
* SdwanPathQualityProfile data source
*/
export declare function getSdwanPathQualityProfileOutput(args: GetSdwanPathQualityProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSdwanPathQualityProfileResult>;
/**
* A collection of arguments for invoking getSdwanPathQualityProfile.
*/
export interface GetSdwanPathQualityProfileOutputArgs {
/**
* UUID of the resource
*/
id: pulumi.Input<string>;
/**
* Profile name
*/
name?: pulumi.Input<string>;
}