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
| Name | Datatype | Description |
|---|---|---|
id | string | Unique provider's id. |
name | string | Provider's display name. |
aad | object | Azure Active Directory info. |
company | string | Company name. |
defaultEndpoint | string | Provider's default endpoint. |
description | string | A description about this provider. |
managedApplication | object | Provider's Managed-Application info. |
pricingDimensions | array | The list of pricing dimensions from the provider. |
providerType | string | Provider type. |
quotaDimensions | array | The list of quota dimensions from the provider. |
skus | array | The list of skus available from this provider. |
targets | array | The list of targets available from this provider. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location_name, subscription_id | 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_name | string | Location. Required. |
subscription_id | string |
SELECT examples
- list
Returns the list of all provider offerings available for the given location.
SELECT
id,
name,
aad,
company,
defaultEndpoint,
description,
managedApplication,
pricingDimensions,
providerType,
quotaDimensions,
skus,
targets
FROM azure.quantum.offerings
WHERE location_name = '{{ location_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;