Skip to main content

offerings

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

Overview

Nameofferings
TypeResource
Idazure.quantum.offerings

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocationName, subscriptionIdReturns 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 }}';