Skip to main content

offers_access_tokens

Creates, updates, deletes, gets or lists an offers_access_tokens resource.

Overview

Nameoffers_access_tokens
TypeResource
Idazure_extras.edge_marketplace.offers_access_tokens

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
accessTokenstringThe access token.
diskIdstringThe disk id.
statusstringThe access token creation status.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceUri, offerIdget access token.

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
offerIdstringId of the offer
resourceUristringThe fully qualified Azure Resource manager identifier of the resource.

SELECT examples

get access token.

SELECT
accessToken,
diskId,
status
FROM azure_extras.edge_marketplace.offers_access_tokens
WHERE resourceUri = '{{ resourceUri }}' -- required
AND offerId = '{{ offerId }}' -- required
;