offers_access_tokens
Creates, updates, deletes, gets or lists an offers_access_tokens resource.
Overview
| Name | offers_access_tokens |
| Type | Resource |
| Id | azure_extras.edge_marketplace.offers_access_tokens |
Fields
The following fields are returned by SELECT queries:
- get
ARM operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
accessToken | string | The access token. |
diskId | string | The disk id. |
status | string | The access token creation status. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceUri, offerId | get 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.
| Name | Datatype | Description |
|---|---|---|
offerId | string | Id of the offer |
resourceUri | string | The fully qualified Azure Resource manager identifier of the resource. |
SELECT examples
- get
get access token.
SELECT
accessToken,
diskId,
status
FROM azure_extras.edge_marketplace.offers_access_tokens
WHERE resourceUri = '{{ resourceUri }}' -- required
AND offerId = '{{ offerId }}' -- required
;