offerings
Creates, updates, deletes, gets or lists a offerings
resource.
Overview
Name | offerings |
Type | Resource |
Id | azure.quantum.offerings |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Unique provider's id. |
name | string | Provider's display name. |
properties | object | Provider properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationName, subscriptionId | Returns the list of all provider offerings available for the given location. |
SELECT
examples
Returns the list of all provider offerings available for the given location.
SELECT
id,
name,
properties
FROM azure.quantum.offerings
WHERE locationName = '{{ locationName }}'
AND subscriptionId = '{{ subscriptionId }}';