services_supported_server_versions
Creates, updates, deletes, gets or lists a services_supported_server_versions
resource.
Overview
Name | services_supported_server_versions |
Type | Resource |
Id | azure.spring_apps.services_supported_server_versions |
Fields
Name | Datatype | Description |
---|---|---|
server | string | The server name. |
value | string | The raw server version value which could be passed to deployment CRUD operations. |
version | string | The Server version. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, serviceName, subscriptionId | Lists all of the available server versions supported by Microsoft.AppPlatform provider. |
SELECT
examples
Lists all of the available server versions supported by Microsoft.AppPlatform provider.
SELECT
server,
value,
version
FROM azure.spring_apps.services_supported_server_versions
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';