Skip to main content

managed_cluster_versions

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

Overview

Namemanaged_cluster_versions
TypeResource
Idazure.service_fabric_managed_clusters.managed_cluster_versions

Fields

NameDatatypeDescription
idtextThe identification of the result
nametextThe name of the result
clusterVersiontextfield from the properties object
cluster_code_versiontextfield from the properties object
environmenttextfield from the properties object
locationtextfield from the properties object
os_typetextfield from the properties object
subscriptionIdtextfield from the properties object
support_expiry_utctextfield from the properties object
typetextThe result resource type

Methods

NameAccessible byRequired ParamsDescription
getSELECTclusterVersion, location, subscriptionIdGets information about an available Service Fabric managed 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,
clusterVersion,
cluster_code_version,
environment,
location,
os_type,
subscriptionId,
support_expiry_utc,
type
FROM azure.service_fabric_managed_clusters.vw_managed_cluster_versions
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';