Skip to main content

offerings

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

Overview

Nameofferings
TypeResource
Idazure.quantum.offerings

Fields

The following fields are returned by SELECT queries:

Offerings details.

NameDatatypeDescription
idstringUnique provider's id.
namestringProvider's display name.
propertiesobjectProvider properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, locationReturns 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.

NameDatatypeDescription
locationstringThe name of the Azure region.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;