elastic_versions
Creates, updates, deletes, gets or lists an elastic_versions resource.
Overview
| Name | elastic_versions |
| Type | Resource |
| Id | azure_isv.elastic.elastic_versions |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
version | string | Available elastic version of the given region. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id, region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | Region where elastic deployment will take place. Required. |
subscription_id | string |
SELECT examples
- list
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
;