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:

NameDatatypeDescription
idstringUnique provider's id.
namestringProvider's display name.
aadobjectAzure Active Directory info.
companystringCompany name.
defaultEndpointstringProvider's default endpoint.
descriptionstringA description about this provider.
managedApplicationobjectProvider's Managed-Application info.
pricingDimensionsarrayThe list of pricing dimensions from the provider.
providerTypestringProvider type.
quotaDimensionsarrayThe list of quota dimensions from the provider.
skusarrayThe list of skus available from this provider.
targetsarrayThe list of targets available from this provider.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation_name, subscription_idReturns 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
location_namestringLocation. Required.
subscription_idstring

SELECT examples

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
;