@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
93 lines (92 loc) • 2.03 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Retrieves a config item.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const example = scm.getQosPolicyRule({
* id: "1234-56-789",
* });
* ```
*/
export declare function getQosPolicyRule(args: GetQosPolicyRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetQosPolicyRuleResult>;
/**
* A collection of arguments for invoking getQosPolicyRule.
*/
export interface GetQosPolicyRuleArgs {
/**
* The Folder param.
*/
folder?: string;
/**
* The Id param.
*/
id: string;
}
/**
* A collection of values returned by getQosPolicyRule.
*/
export interface GetQosPolicyRuleResult {
/**
* The Action param.
*/
readonly action: outputs.GetQosPolicyRuleAction;
/**
* The Description param.
*/
readonly description: string;
/**
* The DscpTos param.
*/
readonly dscpTos: outputs.GetQosPolicyRuleDscpTos;
/**
* The Folder param.
*/
readonly folder?: string;
/**
* The Id param.
*/
readonly id: string;
/**
* The Name param.
*/
readonly name: string;
/**
* The Schedule param.
*/
readonly schedule: string;
readonly tfid: string;
}
/**
* Retrieves a config item.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const example = scm.getQosPolicyRule({
* id: "1234-56-789",
* });
* ```
*/
export declare function getQosPolicyRuleOutput(args: GetQosPolicyRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetQosPolicyRuleResult>;
/**
* A collection of arguments for invoking getQosPolicyRule.
*/
export interface GetQosPolicyRuleOutputArgs {
/**
* The Folder param.
*/
folder?: pulumi.Input<string>;
/**
* The Id param.
*/
id: pulumi.Input<string>;
}