import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * SdwanRule data source */ export declare function getSdwanRule(args: GetSdwanRuleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSdwanRule. */ export interface GetSdwanRuleArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getSdwanRule. */ export interface GetSdwanRuleResult { readonly action: outputs.GetSdwanRuleAction; readonly applications: string[]; readonly description: string; readonly destinations: string[]; /** * The device in which the resource is defined */ readonly device: string; readonly disabled: boolean; readonly errorCorrectionProfile: string; readonly folder: string; readonly froms: string[]; /** * UUID of the resource */ readonly id: string; readonly name: string; readonly negateDestination: boolean; readonly negateSource: boolean; readonly pathQualityProfile: string; readonly position: string; readonly saasQualityProfile: string; readonly services: string[]; readonly snippet: string; readonly sourceUsers: string[]; readonly sources: string[]; readonly tags: string[]; readonly tfid: string; readonly tos: string[]; } /** * SdwanRule data source */ export declare function getSdwanRuleOutput(args: GetSdwanRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSdwanRule. */ export interface GetSdwanRuleOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getSdwanRule.d.ts.map