Skip to main content

cluster_versions

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

Overview

Namecluster_versions
TypeResource
Idazure.service_fabric.cluster_versions

Fields

NameDatatypeDescription
idstringThe identification of the result
namestringThe name of the result
propertiesobjectThe detail of the Service Fabric runtime version result
typestringThe result resource type

Methods

NameAccessible byRequired ParamsDescription
getSELECTclusterVersion, location, subscriptionIdGets information about an available Service Fabric cluster code version.
get_by_environmentSELECTclusterVersion, environment, location, subscriptionIdGets information about an available Service Fabric cluster code version by environment.
listSELECTlocation, subscriptionIdGets all available code versions for Service Fabric cluster resources by location.
list_by_environmentSELECTenvironment, location, subscriptionIdGets all available code versions for Service Fabric cluster resources by environment.

SELECT examples

Gets all available code versions for Service Fabric cluster resources by location.

SELECT
id,
name,
properties,
type
FROM azure.service_fabric.cluster_versions
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';