offers
Creates, updates, deletes, gets or lists a offers
resource.
Overview
Name | offers |
Type | Resource |
Id | azure_extras.edge_marketplace.offers |
Fields
- vw_offers
- offers
Name | Datatype | Description |
---|---|---|
content_url | text | field from the properties object |
content_version | text | field from the properties object |
marketplace_skus | text | field from the properties object |
offerId | text | field from the properties object |
offer_content | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceUri | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The offer properties |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | offerId, resourceUri | Get a Offer |
list | SELECT | resourceUri | List Offer resources by parent |
list_by_subscription | SELECT | subscriptionId | List Offer resources by subscription |
generate_access_token | EXEC | offerId, resourceUri, data__edgeMarketPlaceRegion | A long-running resource action. |
SELECT
examples
List Offer resources by parent
- vw_offers
- offers
SELECT
content_url,
content_version,
marketplace_skus,
offerId,
offer_content,
provisioning_state,
resourceUri,
subscriptionId
FROM azure_extras.edge_marketplace.vw_offers
WHERE resourceUri = '{{ resourceUri }}';
SELECT
properties
FROM azure_extras.edge_marketplace.offers
WHERE resourceUri = '{{ resourceUri }}';