Skip to main content

elastic_versions

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

Overview

Nameelastic_versions
TypeResource
Idazure_isv.elastic.elastic_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
versionstringAvailable elastic version of the given region.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_id, regionRetrieve a list of all available Elastic versions for a specified region, helping you choose the best version for your deployment. Retrieve a list of all available Elastic versions for a specified region, helping you choose the best version for your deployment.

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
regionstringRegion where elastic deployment will take place. Required.
subscription_idstring

SELECT examples

Retrieve a list of all available Elastic versions for a specified region, helping you choose the best version for your deployment. Retrieve a list of all available Elastic versions for a specified region, helping you choose the best version for your deployment.

SELECT
version
FROM azure_isv.elastic.elastic_versions
WHERE subscription_id = '{{ subscription_id }}' -- required
AND region = '{{ region }}' -- required
;