import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a datasource to retrieve all the pbrs. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const test = nutanix.getPbrs({}); * ``` * */ export declare function getPbrs(args?: GetPbrsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPbrs. */ export interface GetPbrsArgs { /** * - The routing policies kind metadata. */ metadatas?: inputs.GetPbrsMetadata[]; } /** * A collection of values returned by getPbrs. */ export interface GetPbrsResult { /** * version of the API */ readonly apiVersion: string; /** * List of PBRs. */ readonly entities: outputs.GetPbrsEntity[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * - The routing policies kind metadata. */ readonly metadatas: outputs.GetPbrsMetadata[]; } /** * Provides a datasource to retrieve all the pbrs. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const test = nutanix.getPbrs({}); * ``` * */ export declare function getPbrsOutput(args?: GetPbrsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPbrs. */ export interface GetPbrsOutputArgs { /** * - The routing policies kind metadata. */ metadatas?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getPbrs.d.ts.map