managed_clusters_mesh_revision_profiles
Creates, updates, deletes, gets or lists a managed_clusters_mesh_revision_profiles
resource.
Overview
Name | managed_clusters_mesh_revision_profiles |
Type | Resource |
Id | azure.aks.managed_clusters_mesh_revision_profiles |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
properties | object | Mesh revision profile properties for a mesh |
Name | Datatype | Description |
---|---|---|
properties | object | Mesh revision profile properties for a mesh |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , mode | Contains extra metadata on the revision, including supported revisions, cluster compatibility and available upgrades | |
list | select | subscriptionId , location | Contains 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.
Name | Datatype | Description |
---|---|---|
location | string | The name of the Azure region. |
mode | string | The mode of the mesh. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list
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
;
Contains extra metadata on each 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
;