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 Publishers in Oracle Cloud Infrastructure Marketplace service. * * Gets the list of all the publishers of listings available in Oracle Cloud Infrastructure Marketplace. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPublishers = oci.marketplace.getPublishers({ * compartmentId: compartmentId, * publisherId: testPublisher.id, * }); * ``` */ export declare function getPublishers(args?: GetPublishersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPublishers. */ export interface GetPublishersArgs { /** * The unique identifier for the compartment. */ compartmentId?: string; filters?: inputs.Marketplace.GetPublishersFilter[]; /** * Limit results to just this publisher. */ publisherId?: string; } /** * A collection of values returned by getPublishers. */ export interface GetPublishersResult { readonly compartmentId?: string; readonly filters?: outputs.Marketplace.GetPublishersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly publisherId?: string; /** * The list of publishers. */ readonly publishers: outputs.Marketplace.GetPublishersPublisher[]; } /** * This data source provides the list of Publishers in Oracle Cloud Infrastructure Marketplace service. * * Gets the list of all the publishers of listings available in Oracle Cloud Infrastructure Marketplace. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPublishers = oci.marketplace.getPublishers({ * compartmentId: compartmentId, * publisherId: testPublisher.id, * }); * ``` */ export declare function getPublishersOutput(args?: GetPublishersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPublishers. */ export interface GetPublishersOutputArgs { /** * The unique identifier for the compartment. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Limit results to just this publisher. */ publisherId?: pulumi.Input; } //# sourceMappingURL=getPublishers.d.ts.map