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 Invoices Invoice Lines in Oracle Cloud Infrastructure Osp Gateway service. * * Returns the invoice product list by invoice id * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInvoicesInvoiceLines = oci.ospgateway.getInvoicesInvoiceLines({ * compartmentId: compartmentId, * internalInvoiceId: testInvoice.id, * ospHomeRegion: invoicesInvoiceLineOspHomeRegion, * }); * ``` */ export declare function getInvoicesInvoiceLines(args: GetInvoicesInvoiceLinesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInvoicesInvoiceLines. */ export interface GetInvoicesInvoiceLinesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.OspGateway.GetInvoicesInvoiceLinesFilter[]; /** * The identifier of the invoice. */ internalInvoiceId: string; /** * The home region's public name of the logged in user. */ ospHomeRegion: string; } /** * A collection of values returned by getInvoicesInvoiceLines. */ export interface GetInvoicesInvoiceLinesResult { readonly compartmentId: string; readonly filters?: outputs.OspGateway.GetInvoicesInvoiceLinesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly internalInvoiceId: string; /** * The list of invoice_line_collection. */ readonly invoiceLineCollections: outputs.OspGateway.GetInvoicesInvoiceLinesInvoiceLineCollection[]; readonly ospHomeRegion: string; } /** * This data source provides the list of Invoices Invoice Lines in Oracle Cloud Infrastructure Osp Gateway service. * * Returns the invoice product list by invoice id * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInvoicesInvoiceLines = oci.ospgateway.getInvoicesInvoiceLines({ * compartmentId: compartmentId, * internalInvoiceId: testInvoice.id, * ospHomeRegion: invoicesInvoiceLineOspHomeRegion, * }); * ``` */ export declare function getInvoicesInvoiceLinesOutput(args: GetInvoicesInvoiceLinesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInvoicesInvoiceLines. */ export interface GetInvoicesInvoiceLinesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The identifier of the invoice. */ internalInvoiceId: pulumi.Input; /** * The home region's public name of the logged in user. */ ospHomeRegion: pulumi.Input; } //# sourceMappingURL=getInvoicesInvoiceLines.d.ts.map