import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Invoices Invoice Line resource 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 testInvoicesInvoiceLine = oci.ospgateway.getInvoicesInvoiceLine({ * compartmentId: compartmentId, * internalInvoiceId: testInvoice.id, * ospHomeRegion: invoicesInvoiceLineOspHomeRegion, * }); * ``` */ export declare function getInvoicesInvoiceLine(args: GetInvoicesInvoiceLineArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInvoicesInvoiceLine. */ export interface GetInvoicesInvoiceLineArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * 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 getInvoicesInvoiceLine. */ export interface GetInvoicesInvoiceLineResult { readonly compartmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly internalInvoiceId: string; /** * Invoice line list elements */ readonly items: outputs.OspGateway.GetInvoicesInvoiceLineItem[]; readonly ospHomeRegion: string; } /** * This data source provides details about a specific Invoices Invoice Line resource 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 testInvoicesInvoiceLine = oci.ospgateway.getInvoicesInvoiceLine({ * compartmentId: compartmentId, * internalInvoiceId: testInvoice.id, * ospHomeRegion: invoicesInvoiceLineOspHomeRegion, * }); * ``` */ export declare function getInvoicesInvoiceLineOutput(args: GetInvoicesInvoiceLineOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInvoicesInvoiceLine. */ export interface GetInvoicesInvoiceLineOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * The identifier of the invoice. */ internalInvoiceId: pulumi.Input; /** * The home region's public name of the logged in user. */ ospHomeRegion: pulumi.Input; } //# sourceMappingURL=getInvoicesInvoiceLine.d.ts.map