Skip to main content

credits

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

Overview

Namecredits
TypeResource
Idazure.billing_benefits.credits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
billingAccountResourceIdstringFully-qualified identifier of the billing account where the benefit is applied. Present only for Enterprise Agreement customers.
billingProfileResourceIdstringFully-qualified identifier of the billing profile where the benefit is applied. Present only for Field-led or Customer-led customers.
breakdownarrayCredit line-items/milestones/no-charge services breakdown.
creditobjectThe entire investment amount for the credit contract, including currency and amount.
customerIdstringFully-qualified identifier of the customer where the savings plan is applied. Present only for Partner-led customers. Format is /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
endAtstring (date-time)End DateTime in UTC.
etagstringThe etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
identityobjectManaged service identity (system assigned and/or user assigned identities).
kindstringMetadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
locationstringThe geo-location where the resource lives. Required.
managedBystringThe fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
planobjectPlan for the resource.
policiesobjectCredit breakdown item representing a milestone, line-item, or no-charge service.
productCodestringProduct UPN for the credit type.
provisioningStatestringProvisioning state. Known values are: "Creating", "PendingBilling", "ConfirmedBilling", "Created", "Succeeded", "Cancelled", "Expired", and "Failed". (Creating, PendingBilling, ConfirmedBilling, Created, Succeeded, Cancelled, Expired, Failed)
reasonobjectThe reason for the credit. Not required if not applicable.
resourceIdstringFully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
skuobjectThe resource model definition representing SKU.
startAtstring (date-time)Start DateTime.
statusstringStatus of the credit. Known values are: "Unknown", "Pending", "Active", "Succeeded", "Canceled", "Failed", "Expired", "Exhausted", and "NotStarted". (Unknown, Pending, Active, Succeeded, Canceled, Failed, Expired, Exhausted, NotStarted)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
systemIdstringSystem identifier.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, credit_name, subscription_idGet a credit.
list_by_resource_groupselectresource_group_name, subscription_idList Credits under a resource group from primary service admin.
list_by_subscriptionselectsubscription_idList credits under a subscription from primary service tenant.
list_applicableselectscopeList applicable credits for the provided scope. Currently supported scopes: BillingAccountResourceId.
createinsertresource_group_name, credit_name, subscription_id, locationCreate a credit.
updateupdateresource_group_name, credit_name, subscription_idUpdate a credit.
deletedeleteresource_group_name, credit_name, subscription_idDelete a credit.
cancelexecresource_group_name, credit_name, subscription_idCancels a credit.

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
credit_namestringName of the credit. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
scopestringThe scope at which the benefits are listed. Required.
subscription_idstring

SELECT examples

Get a credit.

SELECT
id,
name,
billingAccountResourceId,
billingProfileResourceId,
breakdown,
credit,
customerId,
endAt,
etag,
identity,
kind,
location,
managedBy,
plan,
policies,
productCode,
provisioningState,
reason,
resourceId,
sku,
startAt,
status,
systemData,
systemId,
tags,
type
FROM azure.billing_benefits.credits
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND credit_name = '{{ credit_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Create a credit.

INSERT INTO azure.billing_benefits.credits (
tags,
location,
properties,
managedBy,
kind,
identity,
sku,
plan,
resource_group_name,
credit_name,
subscription_id
)
SELECT
'{{ tags }}',
'{{ location }}' /* required */,
'{{ properties }}',
'{{ managedBy }}',
'{{ kind }}',
'{{ identity }}',
'{{ sku }}',
'{{ plan }}',
'{{ resource_group_name }}',
'{{ credit_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
etag,
identity,
kind,
location,
managedBy,
plan,
properties,
sku,
systemData,
tags,
type
;

UPDATE examples

Update a credit.

UPDATE azure.billing_benefits.credits
SET
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND credit_name = '{{ credit_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
etag,
identity,
kind,
location,
managedBy,
plan,
properties,
sku,
systemData,
tags,
type;

DELETE examples

Delete a credit.

DELETE FROM azure.billing_benefits.credits
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND credit_name = '{{ credit_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

Cancels a credit.

EXEC azure.billing_benefits.credits.cancel 
@resource_group_name='{{ resource_group_name }}' --required,
@credit_name='{{ credit_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;