import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Pbf Listings in Oracle Cloud Infrastructure Functions service. * * Fetches a wrapped list of all Pre-built Function(PBF) Listings. Returns a PbfListingCollection containing * an array of PbfListingSummary response models. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPbfListings = oci.functions.getPbfListings({ * name: pbfListingName, * nameContains: pbfListingNameContains, * nameStartsWith: pbfListingNameStartsWith, * pbfListingId: testPbfListing.id, * state: pbfListingState, * triggers: pbfListingTrigger, * }); * ``` */ export declare function getPbfListings(args?: GetPbfListingsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPbfListings. */ export interface GetPbfListingsArgs { filters?: inputs.Functions.GetPbfListingsFilter[]; /** * A filter to return only resources that match the entire PBF name given. */ name?: string; /** * A filter to return only resources that contain the supplied filter text in the PBF name given. */ nameContains?: string; /** * A filter to return only resources that start with the supplied filter text in the PBF name given. */ nameStartsWith?: string; /** * unique PbfListing identifier */ pbfListingId?: string; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: string; /** * A filter to return only resources that match the service trigger sources of a PBF. */ triggers?: string[]; } /** * A collection of values returned by getPbfListings. */ export interface GetPbfListingsResult { readonly filters?: outputs.Functions.GetPbfListingsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A brief descriptive name for the PBF trigger. */ readonly name?: string; readonly nameContains?: string; readonly nameStartsWith?: string; readonly pbfListingId?: string; /** * The list of pbf_listings_collection. */ readonly pbfListingsCollections: outputs.Functions.GetPbfListingsPbfListingsCollection[]; /** * The current state of the PBF resource. */ readonly state?: string; readonly triggers?: string[]; } /** * This data source provides the list of Pbf Listings in Oracle Cloud Infrastructure Functions service. * * Fetches a wrapped list of all Pre-built Function(PBF) Listings. Returns a PbfListingCollection containing * an array of PbfListingSummary response models. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPbfListings = oci.functions.getPbfListings({ * name: pbfListingName, * nameContains: pbfListingNameContains, * nameStartsWith: pbfListingNameStartsWith, * pbfListingId: testPbfListing.id, * state: pbfListingState, * triggers: pbfListingTrigger, * }); * ``` */ export declare function getPbfListingsOutput(args?: GetPbfListingsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPbfListings. */ export interface GetPbfListingsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the entire PBF name given. */ name?: pulumi.Input; /** * A filter to return only resources that contain the supplied filter text in the PBF name given. */ nameContains?: pulumi.Input; /** * A filter to return only resources that start with the supplied filter text in the PBF name given. */ nameStartsWith?: pulumi.Input; /** * unique PbfListing identifier */ pbfListingId?: pulumi.Input; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; /** * A filter to return only resources that match the service trigger sources of a PBF. */ triggers?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getPbfListings.d.ts.map