Skip to main content

billing_info

Creates, updates, deletes, gets or lists a billing_info resource.

Overview

Namebilling_info
TypeResource
Idazure_isv.elastic.billing_info

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
marketplaceSaasInfoobjectMarketplace Subscription details
partnerBillingEntityobjectPartner Billing Entity details: Organization Info

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, monitorName

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
monitorNamestringMonitor resource name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Success

SELECT
marketplaceSaasInfo,
partnerBillingEntity
FROM azure_isv.elastic.billing_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND monitorName = '{{ monitorName }}' -- required
;