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 Listing Taxes in Oracle Cloud Infrastructure Marketplace service. * * Returns list of all tax implications that current tenant may be liable to once they launch the listing. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testListingTaxes = oci.marketplace.getListingTaxes({ * listingId: testListing.id, * compartmentId: compartmentId, * }); * ``` */ export declare function getListingTaxes(args: GetListingTaxesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getListingTaxes. */ export interface GetListingTaxesArgs { /** * The unique identifier for the compartment. */ compartmentId?: string; filters?: inputs.Marketplace.GetListingTaxesFilter[]; /** * The unique identifier for the listing. */ listingId: string; } /** * A collection of values returned by getListingTaxes. */ export interface GetListingTaxesResult { readonly compartmentId?: string; readonly filters?: outputs.Marketplace.GetListingTaxesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly listingId: string; /** * The list of taxes. */ readonly taxes: outputs.Marketplace.GetListingTaxesTax[]; } /** * This data source provides the list of Listing Taxes in Oracle Cloud Infrastructure Marketplace service. * * Returns list of all tax implications that current tenant may be liable to once they launch the listing. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testListingTaxes = oci.marketplace.getListingTaxes({ * listingId: testListing.id, * compartmentId: compartmentId, * }); * ``` */ export declare function getListingTaxesOutput(args: GetListingTaxesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getListingTaxes. */ export interface GetListingTaxesOutputArgs { /** * The unique identifier for the compartment. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The unique identifier for the listing. */ listingId: pulumi.Input; } //# sourceMappingURL=getListingTaxes.d.ts.map