Skip to main content

discount

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

Overview

Namediscount
TypeResource
Idazure.billing_benefits.discount

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.
appliedScopeTypestringList of applied scopes supported for discounts. Known values are: "BillingAccount", "BillingProfile", and "Customer". (BillingAccount, BillingProfile, Customer)
benefitResourceIdstringFully-qualified identifier of the benefit under applicable benefit list.
billingAccountResourceIdstringBilling account resource id where the discount metadata is present.
billingProfileResourceIdstringBilling profile resource id where the discount is scoped to.
customerResourceIdstringCustomer resource id where the discount is scoped to.
displayNamestringThis defines a user friendly display name for the discount.
entityTypestringThis defines whether the entity being created is primary or affiliate. Supported values: primary, affiliate. Validation: Required, must match one of the 2 values. Required. Known values are: "Primary" and "Affiliate".
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.
productCodestringThis is the catalog UPN for the product. Required.
provisioningStatestringThe state of the resource. Supported values are Pending, Failed, Succeeded, Canceled. Known values are: "Unknown", "Pending", "Succeeded", "Canceled", and "Failed". (Unknown, Pending, Succeeded, Canceled, Failed)
skuobjectThe resource model definition representing SKU.
startAtstring (date-time)Start date of the discount. Value is the date the discount started or will start in the future. Required.
statusstringRepresents the current status of the discount. Known values are: "Active", "Pending", "Failed", "Canceled", and "Expired". (Active, Pending, Failed, Canceled, Expired)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
systemIdstringThis is the globally unique identifier of the Discount which will not change for the lifetime of the Discount.
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, discount_name, subscription_idGet discount at resource group level.
updateupdateresource_group_name, discount_name, subscription_idUpdate discounts.

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
discount_namestringName of the discount. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Get discount at resource group level.

SELECT
id,
name,
appliedScopeType,
benefitResourceId,
billingAccountResourceId,
billingProfileResourceId,
customerResourceId,
displayName,
entityType,
etag,
identity,
kind,
location,
managedBy,
plan,
productCode,
provisioningState,
sku,
startAt,
status,
systemData,
systemId,
tags,
type
FROM azure.billing_benefits.discount
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND discount_name = '{{ discount_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

UPDATE examples

Update discounts.

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