import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Pbf Listing Version resource in Oracle Cloud Infrastructure Functions service. * * Gets a PbfListingVersion by identifier for a PbfListing. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPbfListingVersion = oci.functions.getPbfListingVersion({ * pbfListingVersionId: testPbfListingVersionOciFunctionsPbfListingVersion.id, * }); * ``` */ export declare function getPbfListingVersion(args: GetPbfListingVersionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPbfListingVersion. */ export interface GetPbfListingVersionArgs { /** * unique PbfListingVersion identifier */ pbfListingVersionId: string; } /** * A collection of values returned by getPbfListingVersion. */ export interface GetPbfListingVersionResult { /** * Details changes are included in this version. */ readonly changeSummary: string; /** * Details about the required and optional Function configurations needed for proper performance of the PBF. */ readonly configs: outputs.Functions.GetPbfListingVersionConfig[]; /** * 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; }; /** * 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; /** * The OCID of the PbfListing this resource version belongs to. */ readonly pbfListingId: string; readonly pbfListingVersionId: string; /** * Minimum memory required by this PBF. The user should use memory greater than or equal to this value while configuring the Function. */ readonly requirements: outputs.Functions.GetPbfListingVersionRequirement[]; /** * 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 PbfListingVersion was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The last time the PbfListingVersion 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.GetPbfListingVersionTrigger[]; } /** * This data source provides details about a specific Pbf Listing Version resource in Oracle Cloud Infrastructure Functions service. * * Gets a PbfListingVersion by identifier for a PbfListing. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPbfListingVersion = oci.functions.getPbfListingVersion({ * pbfListingVersionId: testPbfListingVersionOciFunctionsPbfListingVersion.id, * }); * ``` */ export declare function getPbfListingVersionOutput(args: GetPbfListingVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPbfListingVersion. */ export interface GetPbfListingVersionOutputArgs { /** * unique PbfListingVersion identifier */ pbfListingVersionId: pulumi.Input; } //# sourceMappingURL=getPbfListingVersion.d.ts.map