Skip to main content

premier_add_on_offers

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

Overview

Namepremier_add_on_offers
TypeResource
Idazure.web.premier_add_on_offers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
legalTermsUrlstringLegal terms URL.
marketplaceOfferstringMarketplace offer.
marketplacePublisherstringMarketplace publisher.
privacyPolicyUrlstringPrivacy policy URL.
productstringPremier add on offer Product.
promoCodeRequiredbooleantrue if promotion code is required; otherwise, false.
quotaintegerPremier add on offer Quota.
skustringPremier add on SKU.
typestringResource type.
vendorstringPremier add on offer Vendor.
webHostingPlanRestrictionsstringApp Service plans this offer is restricted to. Known values are: "None", "Free", "Shared", "Basic", "Standard", and "Premium". (None, Free, Shared, Basic, Standard, Premium)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_premier_add_on_offersselectsubscription_idList all premier add-on offers. Description for List all premier add-on offers.

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
subscription_idstring

SELECT examples

List all premier add-on offers. Description for List all premier add-on offers.

SELECT
id,
name,
kind,
legalTermsUrl,
marketplaceOffer,
marketplacePublisher,
privacyPolicyUrl,
product,
promoCodeRequired,
quota,
sku,
type,
vendor,
webHostingPlanRestrictions
FROM azure.web.premier_add_on_offers
WHERE subscription_id = '{{ subscription_id }}' -- required
;