Skip to main content

managed_clusters_mesh_revision_profiles

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

Overview

Namemanaged_clusters_mesh_revision_profiles
TypeResource
Idazure.aks.managed_clusters_mesh_revision_profiles

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectMesh revision profile properties for a mesh

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, modeContains extra metadata on the revision, including supported revisions, cluster compatibility and available upgrades
listselectsubscriptionId, locationContains extra metadata on each revision, including supported revisions, cluster compatibility and available upgrades

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
locationstringThe name of the Azure region.
modestringThe mode of the mesh.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Contains extra metadata on the revision, including supported revisions, cluster compatibility and available upgrades

SELECT
properties
FROM azure.aks.managed_clusters_mesh_revision_profiles
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND mode = '{{ mode }}' -- required
;