import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Pbf Listing resource in Oracle Cloud Infrastructure Functions service. * * Fetches a Pre-built Function(PBF) Listing. Returns a PbfListing response model. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPbfListing = oci.functions.getPbfListing({ * pbfListingId: testPbfListingOciFunctionsPbfListing.id, * }); * ``` */ export declare function getPbfListing(args: GetPbfListingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPbfListing. */ export interface GetPbfListingArgs { /** * unique PbfListing identifier */ pbfListingId: string; } /** * A collection of values returned by getPbfListing. */ export interface GetPbfListingResult { /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * A short overview of the PBF Listing: the purpose of the PBF and and associated information. */ readonly description: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A brief descriptive name for the PBF trigger. */ readonly name: string; readonly pbfListingId: string; /** * Contains details about the publisher of this PBF Listing. */ readonly publisherDetails: outputs.Functions.GetPbfListingPublisherDetail[]; /** * The current state of the PBF resource. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the PbfListing was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The last time the PbfListing was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * An array of Trigger. A list of triggers that may activate the PBF. */ readonly triggers: outputs.Functions.GetPbfListingTrigger[]; } /** * This data source provides details about a specific Pbf Listing resource in Oracle Cloud Infrastructure Functions service. * * Fetches a Pre-built Function(PBF) Listing. Returns a PbfListing response model. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPbfListing = oci.functions.getPbfListing({ * pbfListingId: testPbfListingOciFunctionsPbfListing.id, * }); * ``` */ export declare function getPbfListingOutput(args: GetPbfListingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPbfListing. */ export interface GetPbfListingOutputArgs { /** * unique PbfListing identifier */ pbfListingId: pulumi.Input; } //# sourceMappingURL=getPbfListing.d.ts.map