open_shift_versions
Creates, updates, deletes, gets or lists an open_shift_versions resource.
Overview
| Name | open_shift_versions |
| Type | Resource |
| Id | azure_isv.openshift_clusters.open_shift_versions |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
properties | object | The properties for the OpenShiftVersion resource. |
systemData | object | The system meta data relating to this resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, location | The operation returns the installable OpenShift versions as strings. |
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 |
|---|---|---|
location | string | The name of Azure region. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- list
The operation returns the installable OpenShift versions as strings.
SELECT
properties,
systemData
FROM azure_isv.openshift_clusters.open_shift_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;