runtime_versions_runtime_versions
Creates, updates, deletes, gets or lists a runtime_versions_runtime_versions
resource.
Overview
Name | runtime_versions_runtime_versions |
Type | Resource |
Id | azure.spring_apps.runtime_versions_runtime_versions |
Fields
The following fields are returned by SELECT
queries:
- list
Success. The response describes the details of all supported deployment runtime versions.
Name | Datatype | Description |
---|---|---|
platform | string | The platform of this runtime version (possible values: "Java" or ".NET"). |
value | string | The raw value which could be passed to deployment CRUD operations. |
version | string | The detailed version (major.minor) of the platform. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists all of the available runtime 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.
Name | Datatype | Description |
---|
SELECT
examples
- list
Lists all of the available runtime versions supported by Microsoft.AppPlatform provider.
SELECT
platform,
value,
version
FROM azure.spring_apps.runtime_versions_runtime_versions
;