@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.56 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Marketplace Subscription and Organization details to which resource gets billed into.
*
* Uses Azure REST API version 2023-10-20.
*/
export declare function getBillingInfo(args: GetBillingInfoArgs, opts?: pulumi.InvokeOptions): Promise<GetBillingInfoResult>;
export interface GetBillingInfoArgs {
/**
* Monitor resource name
*/
monitorName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Marketplace Subscription and Organization details to which resource gets billed into.
*/
export interface GetBillingInfoResult {
/**
* Marketplace Subscription details
*/
readonly marketplaceSaasInfo?: outputs.datadog.MarketplaceSaaSInfoResponse;
/**
* Partner Billing Entity details: Organization Info
*/
readonly partnerBillingEntity?: outputs.datadog.PartnerBillingEntityResponse;
}
/**
* Marketplace Subscription and Organization details to which resource gets billed into.
*
* Uses Azure REST API version 2023-10-20.
*/
export declare function getBillingInfoOutput(args: GetBillingInfoOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBillingInfoResult>;
export interface GetBillingInfoOutputArgs {
/**
* Monitor resource name
*/
monitorName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}