import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * PbfRule data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Define the data source (the item to be retrieved via API GET) * const pbfExternalWebTestGet = scm.getPbfRule({ * id: "044d67ad-1c36-4b97-bbf4-584445fe8a7d", * }); * export const retrievedIDAndName = { * id: pbfExternalWebTestGet.then(pbfExternalWebTestGet => pbfExternalWebTestGet.id), * name: pbfExternalWebTestGet.then(pbfExternalWebTestGet => pbfExternalWebTestGet.name), * }; * export const recievedResponse = pbfExternalWebTestGet; * ``` */ export declare function getPbfRule(args: GetPbfRuleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPbfRule. */ export interface GetPbfRuleArgs { /** * 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 getPbfRule. */ export interface GetPbfRuleResult { readonly action: outputs.GetPbfRuleAction; readonly applications: string[]; readonly description: string; readonly destinations: string[]; /** * The device in which the resource is defined */ readonly device: string; readonly enforceSymmetricReturn: outputs.GetPbfRuleEnforceSymmetricReturn; readonly folder: string; readonly from: outputs.GetPbfRuleFrom; /** * UUID of the resource */ readonly id: string; readonly name: string; readonly schedule: string; readonly services: string[]; readonly snippet: string; readonly sourceUsers: string[]; readonly sources: string[]; readonly tags: string[]; readonly tfid: string; } /** * PbfRule data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Define the data source (the item to be retrieved via API GET) * const pbfExternalWebTestGet = scm.getPbfRule({ * id: "044d67ad-1c36-4b97-bbf4-584445fe8a7d", * }); * export const retrievedIDAndName = { * id: pbfExternalWebTestGet.then(pbfExternalWebTestGet => pbfExternalWebTestGet.id), * name: pbfExternalWebTestGet.then(pbfExternalWebTestGet => pbfExternalWebTestGet.name), * }; * export const recievedResponse = pbfExternalWebTestGet; * ``` */ export declare function getPbfRuleOutput(args: GetPbfRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPbfRule. */ export interface GetPbfRuleOutputArgs { /** * 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=getPbfRule.d.ts.map