UNPKG

@pulumi/sdwan

Version:

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

91 lines (90 loc) 2.5 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Preferred Color Group Policy Object . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getPreferredColorGroupPolicyObject({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getPreferredColorGroupPolicyObject(args: GetPreferredColorGroupPolicyObjectArgs, opts?: pulumi.InvokeOptions): Promise<GetPreferredColorGroupPolicyObjectResult>; /** * A collection of arguments for invoking getPreferredColorGroupPolicyObject. */ export interface GetPreferredColorGroupPolicyObjectArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getPreferredColorGroupPolicyObject. */ export interface GetPreferredColorGroupPolicyObjectResult { /** * The id of the object */ readonly id: string; /** * The name of the policy object */ readonly name: string; /** * Color or space separated list of colors */ readonly primaryColorPreference: string; /** * Path preference */ readonly primaryPathPreference: string; /** * Color or space separated list of colors */ readonly secondaryColorPreference: string; /** * Path preference */ readonly secondaryPathPreference: string; /** * Color or space separated list of colors */ readonly tertiaryColorPreference: string; /** * Path preference */ readonly tertiaryPathPreference: string; /** * The version of the object */ readonly version: number; } /** * This data source can read the Preferred Color Group Policy Object . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getPreferredColorGroupPolicyObject({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getPreferredColorGroupPolicyObjectOutput(args: GetPreferredColorGroupPolicyObjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPreferredColorGroupPolicyObjectResult>; /** * A collection of arguments for invoking getPreferredColorGroupPolicyObject. */ export interface GetPreferredColorGroupPolicyObjectOutputArgs { /** * The id of the object */ id: pulumi.Input<string>; }