Skip to main content

services_supported_server_versions

Creates, updates, deletes, gets or lists a services_supported_server_versions resource.

Overview

Nameservices_supported_server_versions
TypeResource
Idazure.spring_apps.services_supported_server_versions

Fields

The following fields are returned by SELECT queries:

Success. The response describes the supported server versions.

NameDatatypeDescription
serverstringThe server name.
valuestringThe raw server version value which could be passed to deployment CRUD operations.
versionstringThe Server version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, serviceNameLists all of the available server versions supported by Microsoft.AppPlatform provider.

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
resourceGroupNamestringThe name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceNamestringThe name of the Service resource.
subscriptionIdstringGets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
;