versions
Creates, updates, deletes, gets or lists a versions resource.
Overview
| Name | versions |
| Type | Resource |
| Id | aws.evs.versions |
Fields
The following fields are returned by SELECT queries:
- get_versions
| Name | Datatype | Description |
|---|---|---|
instance_type_esx_versions | array | A list of EC2 instance types and their available ESX versions. |
vcf_versions | array | A list of VCF versions with their availability status, default ESX version, and instance types. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_versions | select | region | Returns information about VCF versions, ESX versions and EC2 instance types provided by Amazon EVS. For each VCF version, the response also includes the default ESX version and provided EC2 instance types. |
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 | AWS region (default: us-east-1) |
SELECT examples
- get_versions
Returns information about VCF versions, ESX versions and EC2 instance types provided by Amazon EVS. For each VCF version, the response also includes the default ESX version and provided EC2 instance types.
SELECT
instance_type_esx_versions,
vcf_versions
FROM aws.evs.versions
WHERE region = '{{ region }}' -- required
;