premier_add_on_offers
Creates, updates, deletes, gets or lists a premier_add_on_offers resource.
Overview
| Name | premier_add_on_offers |
| Type | Resource |
| Id | azure.web.premier_add_on_offers |
Fields
The following fields are returned by SELECT queries:
- list_premier_add_on_offers
| Name | Datatype | Description |
|---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
legalTermsUrl | string | Legal terms URL. |
marketplaceOffer | string | Marketplace offer. |
marketplacePublisher | string | Marketplace publisher. |
privacyPolicyUrl | string | Privacy policy URL. |
product | string | Premier add on offer Product. |
promoCodeRequired | boolean | true if promotion code is required; otherwise, false. |
quota | integer | Premier add on offer Quota. |
sku | string | Premier add on SKU. |
type | string | Resource type. |
vendor | string | Premier add on offer Vendor. |
webHostingPlanRestrictions | string | App 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_premier_add_on_offers | select | subscription_id | List 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string |
SELECT examples
- list_premier_add_on_offers
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
;