import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access an ID for your MPA Account billing scope. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.billing.getMpaAccountScope({ * billingAccountName: "e879cf0f-2b4d-5431-109a-f72fc9868693:024cabf4-7321-4cf9-be59-df0c77ca51de_2019-05-31", * customerName: "2281f543-7321-4cf9-1e23-edb4Oc31a31c", * }); * export const id = example.then(example => example.id); * ``` */ export declare function getMpaAccountScope(args: GetMpaAccountScopeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMpaAccountScope. */ export interface GetMpaAccountScopeArgs { /** * The Billing Account Name of the MPA account. */ billingAccountName: string; /** * The Customer Name in the above Billing Account. */ customerName: string; } /** * A collection of values returned by getMpaAccountScope. */ export interface GetMpaAccountScopeResult { readonly billingAccountName: string; readonly customerName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Use this data source to access an ID for your MPA Account billing scope. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.billing.getMpaAccountScope({ * billingAccountName: "e879cf0f-2b4d-5431-109a-f72fc9868693:024cabf4-7321-4cf9-be59-df0c77ca51de_2019-05-31", * customerName: "2281f543-7321-4cf9-1e23-edb4Oc31a31c", * }); * export const id = example.then(example => example.id); * ``` */ export declare function getMpaAccountScopeOutput(args: GetMpaAccountScopeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMpaAccountScope. */ export interface GetMpaAccountScopeOutputArgs { /** * The Billing Account Name of the MPA account. */ billingAccountName: pulumi.Input; /** * The Customer Name in the above Billing Account. */ customerName: pulumi.Input; }