UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

79 lines (78 loc) 1.93 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Policer Policy Object . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getPolicerPolicyObject({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getPolicerPolicyObject(args: GetPolicerPolicyObjectArgs, opts?: pulumi.InvokeOptions): Promise<GetPolicerPolicyObjectResult>; /** * A collection of arguments for invoking getPolicerPolicyObject. */ export interface GetPolicerPolicyObjectArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getPolicerPolicyObject. */ export interface GetPolicerPolicyObjectResult { /** * Burst in bytes */ readonly burst: number; /** * Exceed action */ readonly exceedAction: string; /** * The id of the object */ readonly id: string; /** * The name of the policy object */ readonly name: string; /** * Rate in bps */ readonly rate: number; /** * The version of the object */ readonly version: number; } /** * This data source can read the Policer Policy Object . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getPolicerPolicyObject({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getPolicerPolicyObjectOutput(args: GetPolicerPolicyObjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPolicerPolicyObjectResult>; /** * A collection of arguments for invoking getPolicerPolicyObject. */ export interface GetPolicerPolicyObjectOutputArgs { /** * The id of the object */ id: pulumi.Input<string>; }