offerings
Creates, updates, deletes, gets or lists an offerings resource.
Overview
| Name | offerings |
| Type | Resource |
| Id | azure.quantum.offerings |
Fields
The following fields are returned by SELECT queries:
- list
Offerings details.
| Name | Datatype | Description |
|---|---|---|
id | string | Unique provider's id. |
name | string | Provider's display name. |
properties | object | Provider properties. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, location | Returns the list of all provider offerings available for the given location. |
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 |
|---|---|---|
location | string | The name of the Azure region. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list
Returns the list of all provider offerings available for the given location.
SELECT
id,
name,
properties
FROM azure.quantum.offerings
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;