@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
65 lines (64 loc) • 1.67 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* QosProfile data source
*/
export declare function getQosProfile(args: GetQosProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetQosProfileResult>;
/**
* A collection of arguments for invoking getQosProfile.
*/
export interface GetQosProfileArgs {
/**
* UUID of the resource
*/
id: string;
/**
* Alphanumeric string begin with letter: [0-9a-zA-Z._-]
*/
name?: string;
}
/**
* A collection of values returned by getQosProfile.
*/
export interface GetQosProfileResult {
/**
* Aggregate bandwidth
*/
readonly aggregateBandwidth: outputs.GetQosProfileAggregateBandwidth;
/**
* Class bandwidth type
*/
readonly classBandwidthType: outputs.GetQosProfileClassBandwidthType;
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly folder: string;
/**
* UUID of the resource
*/
readonly id: string;
/**
* Alphanumeric string begin with letter: [0-9a-zA-Z._-]
*/
readonly name: string;
readonly snippet: string;
readonly tfid: string;
}
/**
* QosProfile data source
*/
export declare function getQosProfileOutput(args: GetQosProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetQosProfileResult>;
/**
* A collection of arguments for invoking getQosProfile.
*/
export interface GetQosProfileOutputArgs {
/**
* UUID of the resource
*/
id: pulumi.Input<string>;
/**
* Alphanumeric string begin with letter: [0-9a-zA-Z._-]
*/
name?: pulumi.Input<string>;
}